@miro1360
Thank so much
for example:
i added
MA_handle=iMA(Symbol(),0,1,0,MODE_SMA,PRICE_CLOSE);
MA_handle2=iMA(Symbol(),0,2,0,MODE_SMA,PRICE_CLOSE);
MA_handle3=iMA(Symbol(),0,3,0,MODE_SMA,PRICE_CLOSE);
MA_handle4=iMA(Symbol(),0,4,0,MODE_SMA,PRICE_CLOSE);
in oninit
and
IndicatorRelease(MA_handle);
IndicatorRelease(MA_handle2);
IndicatorRelease(MA_handle3);
IndicatorRelease(MA_handle4);
on deinit
and
int MA_handle=INVALID_HANDLE;
int MA_handle2=INVALID_HANDLE;
int MA_handle3=INVALID_HANDLE;
int MA_handle4=INVALID_HANDLE;
before variable
but this is not work!
is it possible this problem because of fxdreema ima codes ?
how can i fix this ?
Thanks