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
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
}
}
}
GR
grandom
Joined on 17.06.2022
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: MA & MACD & RSI & ADX.algo
- Rating: 0
- Installs: 203
- Modified: 11/03/2023 03:06
Warning! Running cBots downloaded from this section may lead to financial losses. Use them at your own risk.
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
No comments found.