Robot using my own indicater
Created at 23 Oct 2013, 18:45
Robot using my own indicater
23 Oct 2013, 18:45
Still modelling an experienced trader. I now build his Personal Indicater and wonder:
(How) is it possible to get values from my own Indicator in my Robot?
Replies
Old Account
23 Oct 2013, 23:32
private // Name of indecator abc; protected override void OnStart() { abc = Indicators.GetIndicator<//Name of indecator>(); } protected override void OnTick() if (abc.Result.LastValue < 1)
Hope it helps
@Old Account
hichem
23 Oct 2013, 23:01
RE:
There is examples in the sample robots and indicators that come with cAlgo.
jeex said:
@hichem