XavierAndreu

Vela Noticia

Dec 9th, 2022
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //Youtube--> https://youtu.be/IYD25Ktl6jo
  2.  
  3. void OnTick()
  4. {
  5.  
  6. MqlRates InfoPrecio[];
  7. ArraySetAsSeries(InfoPrecio,true);
  8. CopyRates(Symbol(),Period(),0,2,InfoPrecio);
  9.  
  10. int valor=(InfoPrecio[1].high-InfoPrecio[1].low) * 100;
  11.  
  12. if(valor>2000)
  13. printf( valor);
  14.  
  15. //SendNotification("Alerta Vela");
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment