EMA & RSI paid

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


Buy position is entered when price closes above EMA while RSI is oversold. 
Sell position is entered when price closes below EMA while RSI is overbought.

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
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 EMARSI : 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
0