Advertisement
Maurizio-Ciullo

Rsi

Apr 2nd, 2022
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3.  
  4. // Star Detecting RSI ////////////////////////////////////////
  5.  
  6.   // Inputs
  7.   Input:
  8.   periodo_rsi_long(14),
  9.   periodo_rsi_short(14),
  10.  
  11.   // Variables Intializing
  12.   valore_rsi_long(0),
  13.   valore_rsi_short(0);
  14.  
  15.   // Variables Calculated
  16.   Vars:
  17.   valore_rsi_long = RSI(close,periodo_rsi_long);
  18.   valore_rsi_short = RSI(close,periodo_rsi_short);
  19.  
  20.   // Key Words: CondEntryLong = ...... and valore_rsi_long < 20
  21.  
  22. // End Detecting RSI ////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement