Advertisement
Maurizio-Ciullo

Study Trendwide Easylanguage

May 22nd, 2022
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.                                                    Study Trendwide Easylanguage
  2.  
  3. //Inputs
  4. input:
  5. maInputSlow(81),
  6. maInputFast(15);
  7.  
  8. // Dichiarazione Variabil
  9. vars:
  10. maSlow(0),
  11. maFast(0);
  12.  
  13. // Assegnazione Variabili
  14. maSlow = xaverage(close, maInputSlow);
  15. maFast = xaverage(close, maInputFast);
  16.  
  17. // Plot
  18.  
  19. plot1(maSlow);
  20. plot2(maFast);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement