Post
Topic
Board Trading Discussion
Re: Gekko - a javascript trading bot and backtesting platform
by
gabrielomana
on 31/01/2018, 22:15:17 UTC
Hello,
I need 2 strategies to implement in Gekko :

1) BB + RSI + MACD:
 
• Buy decision must satisfy three conditions:
  *  The signal is below the bottom line of Bollinger Bands
  *  The MACD in uptrend and has a cross intersection
  *  The Relative Strength Index is in uptrend
 
• Sell decision must satisfy three conditions:
  *  The signal is above the upper line of Bollinger Bands,
  *  The MACD in downtrend and has a cross intersection,
  *  The Relative Strength Index is in downtrend
 
• Additional Parameters :
  *  Standard parameters for BB
  *  Standard parameters for RSI
  *  Standard parameters for RSI
  *  Time Frame: Must be able to run on any time frame (M1, M5, M15, M30 etc )
  *  Buy Money Management: Be able to use% of account for each buy trade
  *  Sale Money Management: Be able to use% of account for each sale trade
  *  Stop Loss:%
 
2) 2 MA + SAR + RSI :

• Buy decision must satisfy three conditions:
  *  The Relative Strength Index is in uptrend
  *  The MA makes a Golden Cross: Crossover involving a short-term moving average breaking above the long-term moving average
  *  The Parabolic SAR dots, begin to be hanging above the candles
 
• Sell decision must satisfy three conditions:
  *  The Relative Strength Index is in downtrend
  *  The MA Makes to Death Cross: C rossover RESULTING from a l ong-term moving average breaking above the short-term moving average or support level.
  *  The Parabolic SAR dots, begin to be hanging bellow the candles
 
• Additional Parameters :
  *  Number of periods for Short-term moving average
  *  Number of periods for Long-term moving average
  *  Standard parameters for SAR
  *  Standard parameters for RSI
  *  Time Frame: Must be able to run on any time frame (M1, M5, M15, M30 etc )
  *  Buy Money Management: Be able to use% of account for each buy trade
  *  Sale Money Management: Be able to use% of account for each sale trade
  *  Stop Loss: %


I would like to know the feasibility of doing them and the cost