Description
・Display the other symbol's candlestick plotted on a separate indicator panel
・Time frame can be changed
・History data can be read by specifying a period
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 AnotherSymbolcAlgo : Indicator
{
protected override void Initialize()
{
Chart.DrawStaticText("AnotherSymbol", "Please download from the link above.", 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: Another Symbol cAlgo.algo
- Rating: 0
- Installs: 1546
- Modified: 13/10/2021 09:55
Comments
Hi, did you develop also same candlestick indicator for USD Index, using weighted pairs (EUR, JPY, GBP, CAD, SEK, CHF)? Thanks
Hi, @yomm0401 this looks good. I wonder, if u could make something different. The idea is chart line of ratio spread (index1/index2), differential spread or just single instrument overlayed on main graph no scale (full screen).
With these stuff per line:
- label (size of text changeable), user will write the label
- colour, style of line and tickness
Hi,Thanks for indicator