Advertisement
Guest User

Collective Signals Indicators

a guest
May 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # THE COLLECTIVE STABLE COIN TEMPLATE
  2. # https://discord.gg/xp5CdxQ
  3. #
  4. # Always uses 5 minute candles
  5. SOM_trigger_length = 288
  6. # Define the period (in seconds) used by all BB calculation
  7. # Define the standard deviation used by all BB calculation
  8. BB_std = 2
  9. BB_candle_period = 300
  10. # Define the SMA time frame (in candles) used by all BB calculation (Max 500)
  11. BB_Length = 20
  12. # Define the RSI time frame (in candles) used by all RSI calculations
  13. # Define how many candles back to look and see if the EMA lines just crossed.
  14. EMA_cross_candles = 80
  15. # Define the period (in seconds) used to calculate the EMA lines, note exchange API must support this timing
  16. EMA_candle_period = 300
  17. # Define the EMA time frame (in candles) used to calculate the fast EMA line. (Max 500)
  18. EMA_fast_length = 2
  19. # Define the EMA time frame (in candles) used to calculate the slow EMA line. (Max 500)
  20. EMA_slow_length = 13
  21.  
  22. # Define the period (in seconds) used to calculate the RSI lines.
  23. RSI_candle_period = 300
  24. RSI_length = 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement