[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

please



PureBytes Links

Trading Reference Links

Could you help me ?
I have a trouble on ELA.
I need to make this simple trading system, but ONLY on DAILY CHART (not on INTRADAY).
If today Open is less than yesterday Low I want a buy signal to yesterday high stop (see the gif).
My trouble is that this code plot buy signal on the next bar:
  
 If open < L[1] then buy at H[1] stop;
 Exitlong on close;
   
 Thx
 Paul