Bonjour,
I'm working with MS 11 EOD with Windows XP SP3, Ram = 2 Go, Free HardDrive = 142 Go, Dual core Pentium 4 3.0Ghz.
Could you help me to understand why this formula send me "Internal compiler error. Insufficient memory for binary."
The indicator is :
Result:=
If(BarsSince(C>Min(Ref(C,-1)+(ATR(4)*2),
If(Ref(H,-1)>PREV,C*2,PREV)))>BarsSince(C<max(Ref(C,-1)-(ATR(4)*2),
If(Ref(L,-1)<prev,0,PREV))),-1.5,0) +
If(BarsSince(C>Min(Ref(C,-1)+(ATR(4)*2),
If(Ref(H,-1)>PREV,C*2,PREV)))<barsSince(C<max(Ref(C,-1)-(ATR(4)*2),
If(Ref(L,-1)<prev,0,PREV))), +1.5,0)+
If(C > (Min(Ref(C,-1)+(ATR(4)*2),
If(Ref(H,-1)>PREV,C*2,PREV)) + Max(Ref(C,-1)-(ATR(4)*2),
If(Ref(L,-1)<prev,0,PREV)))/2, +0.5, -0.5);
Result;