XavierAndreu

Perfect Doji

Dec 19th, 2022
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //Youtube--> https://www.youtube.com/watch?v=CRoRxX1xVEQ
  2.  
  3. int Doji=0;
  4.  
  5. void OnTick()
  6. {
  7.  
  8. MqlRates price[];
  9. ArraySetAsSeries(price,true);
  10. CopyRates(Symbol(),Period(),0,2,price);
  11.  
  12. if(price[1].open==price[1].close) Doji=Doji + 1;
  13.  
  14. Comment("\n\nDoji: ",Doji);
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment