Symbol Ranking paid
Description
This indicator displays the symbol pairs strength ranking.
It also displays buy and sell signs.
The supported symbol pairs are USDJPY, EURGBP, EURUSD, GBPUSD, EURJPY, GBPJPY, EURAUD, GBPAUD, AUDUSD, and AUDJPY.
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 cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class PerfectOrderIndicatorSample : Indicator { [Parameter()] public DataSeries Source { get; set; } protected override void Initialize() { //Download from here. //https://summertrader.base.shop/items/72760443 } public override void Calculate(int index) { } } }
Comments