I am unable to use the Strategy Wizard for this indicator because it does not publish something reference-able like the SMA does. Forcing the indicator to have some public DataSeries to contain a proxy for the arrow positions
is hugely impractical due to the complexity of the logic which develops arrows and manages them.
DESIRED SOLUTION: I would like the indicator to "push the button" on the DOM when it draws arrows it thinks are good rather than have the trader manually transfer the respective prices to a DOM in real time. The indicator should continue its current visible arrow plotting but additionally start up a DOM with a buy/sell price at the moment it thinks that a good trade is at hand. The DOM, of course would be preset with stop and target information.
I did the seemingly obvious thing of putting AtmStrategyCreate(long parameter list) into the indicator code
but get the message "AtmStrategyCreate does not exist in the current context.".
Although I have made many successful strategies using the Strategy Wizard using standard indicators which publish continuous numeric values in DataSeries objects, the lack of a meaningful publishable continuous value of this indicator has stumped me. What are my options?
1) Make a dummy strategy in the Strategy Wizard and copy/paste the entire 2000 lines of indicator code into it?
2)Fiddle with "Using declarations" region of the indicator in some way?
3)Both
4)None of the above
Thanks in advance for your tireless efforts to help guys like me.
Roland

Comment