Supertrend and RSI paid

by grandom in category Trend at 26/03/2023
Description

If Contrarian mode is enabled:

Buy position is entered when Supertend is green and RSI is oversold.
Sell position is entered when Supertrend is red and RSI is overbought.

If Contrarian mode is disabled:
Buy position is entered when Supertend is green and RSI is overbought.
Sell position is entered when Supertrend is red and RSI is oversold.

Please contact on Telegram for payment and to send you the bot with source code.

All necessary money management features are included:
stop loss, take profit, lot size, max spread, max gap, max simultaneous trades, breakeven, trailing stop loss

Backtested from 1-Jan-2022 to 1-Mar-2023, tick data (accurate from server), GBPUSD 15min timeframe, 2% risk per trade, start capital $1000, Fxpro broker

Result 90% profit, and max drawdown 10%

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
Language: C#
Trading Platform: cAlgo
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 SupertrendRSI : 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

json73758 - March 28, 2023 @ 21:38

Supertrend is a trend-following indicator that helps traders identify the direction of the trend and potential entry and exit points. It uses a combination of price and volatility to plot a line above or below the price chart, which can be used to determine whether the market is in an uptrend or downtrend check over herethis content, have a peek at these guys, check my blog.

0