PureBytes Links
Trading Reference Links
|
> -----Message d'origine-----
> De : brunobucic@xxxxxxxxxxx [mailto:brunobucic@xxxxxxxxxxx]
> Envoyé : vendredi 23 août 2002 18:45
> À : omega-list@xxxxxxxxxx
> Objet : Pllease, what is wrong with this code
>
>
> Please can You tell me what is wrong with this code.
> Error Code (#177) TOO MANY INPUTS SUPPLIED
>
> How can write it in a way that allow me to run optimisations.
>
> Regards
>
>
>
>
> {*******************************************************************
> Description : ADX Divergence and BreakOut
> ********************************************************************}
>
>
> Inputs: Osc(ADX (Close, 14)); < =========remove CLOSE!
Sincerely,
Pierre Orphelin
www.sirtrade.com
TradeStation Technologies representative in France
Safir-X neurofuzzy logic trading system builder
To subscribe to our FREE trading system newsletter:
http://www.sirtrade.com/newsletter.htm
>
> If BullishDivergence(Close,Osc,2,10) = 1
>
> then
> Buy next bar at Highest(High,5) + 1 point Stop;
>
>
> If BearishDivergence(Close,Osc,2,20) = 1
>
> then Sell next bar at Lowest(Low,5) - 1 point Stop;
>
> SetExitOnClose;
>
|