Description
This none trade execution bot identifies levels where price tends to close, providing good indication of Supply and Demand areas. Bot is configurable for any timeframe, with self explanatory parameters. Trader can select number of levels to be seen on the chart, how far behind (in periods) bot should look for the level and range (in pips).
for full working version contact me on
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
using System.Collections.Generic;
using System.Collections;
namespace cAlgo.Robots
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class Dev_Levels : Robot
{
[Parameter(DefaultValue = 100)]
public int Periods { get; set; }
[Parameter(DefaultValue = 0.0005)]
public double Step { get; set; }
[Parameter(DefaultValue = 5)]
public int NumberOfLevels { get; set; }
protected override void OnStart()
{
// Put your initialization logic here
//for full version please contact me on castnoshadow@protonmail.com
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
FU
Futuresmo
Joined on 13.09.2013
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Dev_Levels (2).algo
- Rating: 0
- Installs: 826
- Modified: 13/10/2021 09:54
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.
Hello Dear
I want supply and Demand zones