MA & MACD & RSI & ADX paid
Description
Buy position is opened if:
• Price closes above moving average
• RSI equals or above overbought level
• ADX equals or above chosen strength (level)
• MACD Histogram above zero
Sell position is opened if:
• Price closes below moving average
• RSI equals or below oversold level
• ADX equals or above chosen strength (level)
• MACD Histogram below zero
Features details on this file
Algo attached in this post is empty
Please contact on Telegram for price and to send you the bot
Warning! Executing the following cBot may result in loss of funds. Use it at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
using System; using System.Collections.Generic; using System.Linq; using System.Text; using cAlgo.API; using cAlgo.API.Collections; using cAlgo.API.Indicators; using cAlgo.API.Internals; namespace cAlgo.Robots { [Robot(AccessRights = AccessRights.None)] public class MAMACDRSIADX : Robot { [Parameter(DefaultValue = "t.me/aranarth1")] public string website { get; set; } protected override void OnStart() { // contact on telegram: t.me/aranarth1 // to send you the bot after payment } } }
Comments