EMA & RSI paid
Description
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 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