Advertisement
Maurizio-Ciullo

STRATEGIA BASE BKNG QTA

May 11th, 2025
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Vedi Video 1 Cartella Mastermind QTA
  2. // Sottostante BKMG "Booking" "Stocks" 60 Min
  3. // Strategia Grezza Non Finita "Idea Di Sviluppo, da finire !!!"
  4.  
  5.  
  6.  
  7. vars: n(0),  range_percentuale(0);
  8.  
  9. n = 100000/close;
  10. range_percentuale = (High - Low) / Low * 100;
  11.  
  12. if range_percentuale > 0.5 then begin
  13.     buy n shares next bar at market;
  14.  
  15. end;
  16.    
  17. if barssinceentry(0) >= 40 and MarketPosition >0 then sell next bar at market;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement