Topics
Replies
cloesd
06 Sep 2015, 03:45
RE:
Paul_Hayes said:
try this and let me know if it works, I have had some issues with indicator objects loading lazily, they have a reference, but no values.
double x =multi.EMA1.Result.Lastvalue;
Print(x);
Error CS1061: 'cAlgo.API.IndicatorDataSeries' does not contain a definition for 'Result' and no extension method 'Result' accepting a first argument of type 'cAlgo.API.IndicatorDataSeries' could be found (are you missing a using directive or an assembly reference?)
This is what I get.
I've set everthing to public in the indicator aswell, still same issue:
public ExponentialMovingAverage Ema1; public ExponentialMovingAverage Ema2; public ExponentialMovingAverage Ema3;
@cloesd
cloesd
01 Mar 2015, 05:50
RE:
Sorry Custom indicator, Not customer.
After playing around with it a bit, I've got it to signal but it signals irrationally.
Does anyone have a working copy of the Golden Dragon algo? It seems the recent patches have screwed it up, and it's never taking trades etc.
@cloesd
cloesd
01 Mar 2015, 01:55
I'm trying to re-build/repair that golden dragon bot,
I need it to buy when price/(hull moving average) crosses another customer indicator ( BelkhayatePRC).
How can I do this?
I've tried:
" if (hull.hma.HasCrossedAbove(cog.sql3, 1)) "
but it never signals.
anyone want to lend a hand?
@cloesd
cloesd
09 Sep 2015, 12:31
RE:
Paul_Hayes said:
@cloesd