Description
Volatility = daily high price - daily low price.
YouTube
Donation from free
download from Gumroad
Another indicators:
--free--
Upper TF Heikin-ashi Bull Bear
--paid--
MTF OHLCFP Lines Candles Before
cBot:
Auto Calculate Lots V4.0 自動ロット計算
Best regards
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class DailyVolatilityAverageSample : Indicator
{
protected override void Initialize()
{
Chart.DrawStaticText("Daily Volatility Average", "Please download this indicator from above link", VerticalAlignment.Top, HorizontalAlignment.Center, Color.AliceBlue);
}
public override void Calculate(int index)
{
}
}
}
yomm0401
Joined on 11.04.2020
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: Daily Volatility Average Sample.algo
- Rating: 0
- Installs: 2017
- Modified: 13/10/2021 09:55
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.
Can you help to code signal bar indicator? An indicator with MTF feature signal from MA, RSI Stochastic and MACD. The indicator also display bid price, spread, daily average hi to low range.