OptimusFLOW
  • Welcome to OptimusFLOW Help
  • Getting started
    • First Time Users
    • Control center
    • Workspaces, Binds, Groups
    • Templates
    • Set as Default
    • Symbols lookup
    • Table management
    • Backup & restore manager
    • General settings
  • Connections
    • Connections manager
    • Connection to Optimus Futures
    • Connection to Paper to Trader dxFeed
    • Connection to Rithmic
    • Connection to Rithmic Prop
    • Connection to CQG
    • Connection to OANDA
  • Trading Journal
  • Analytics panels
    • Chart
      • Chart types
        • Renko
        • Heiken Ashi
        • Kagi
        • Points & Figures
        • Range bars
        • Line break
        • Volume Bars
      • Chart overlays
      • Technical indicators
        • Oscillators
          • Aroon Indicator
          • Moving Average Convergence/Divergence
          • Awesome Oscillator
          • Accelerator Oscillator
          • %R Larry Williams
          • Momentum
          • Rate of Change
          • Commodity Channel Index
        • Moving averages
          • Exponential Moving Average
          • Simple moving average
        • Volatility
          • Average True Range
          • Standard deviation
        • Trend
          • ZigZag
        • Volume
          • Delta Flow
      • Drawing tools
      • Volume Analysis Tools | Volume Profiles | Footprint chart | VWAP
        • Cluster chart
        • Volume profiles
        • Time statistics
        • Time histogram
        • Historical Time & Sales
      • Power Trades
      • VWAP | Volume Weighted Average Price
    • Watchlist
    • Time & Sales
    • Price Statistic
    • DOM Surface
    • Option Analytics
    • TPO Profile Chart
  • Trading panels
    • Order Entry
      • Order Types
    • DOM Trader
    • Market depth
    • Trading simulator
    • Market Replay (History Player)
    • FX Cell
  • Portfolio panels
    • Positions
    • Working Orders
    • Trades
    • Orders History
    • Synthetic Symbols
    • Historical Symbols
  • Information panels
    • Account info
    • Symbol Info
    • Event Log
    • RSS
    • Reports
  • Miscellaneous
    • History Exporter
    • Market heat map
    • Stat matrix
    • Exchange times
    • Quote Board
    • Excel and RTD function
  • Algo
    • Introduction
    • Install for Visual Studio
    • Simple Indicator
    • Input Parameters
    • Built-In indicators access
    • Indicator with custom painting (GDI)
    • Using markers with indicators
    • Adding a custom indicator to Watchlist
    • Downloading history
    • Simple strategy
    • Access to trading portfolio
    • Trading operations
    • Example: Simple Moving Average
Powered by GitBook
On this page
  • General
  • Access built-in indicators

Was this helpful?

  1. Algo

Built-In indicators access

Use the results of 50+ built-in indicators of OptimusFLOW in your strategies and indicators

General

During development of your own indicators or strategy, you may require using some standard indicators, for example Moving Averages. You don't need to write any code for this, as OptimusFLOW trading platform provides you a wide set of predefined indicators. At the moment there are about 50 built-in indicators, among them:

  • EMA

  • ADX

  • Keltner

  • ROC

  • RSI

  • KAMA

  • AROON

  • and many others

Access built-in indicators

You can access built-in indicators using Core.Indicators.BuiltIn class. A good place to initiate such indicators is in an OnInit method of your script:

Indicator AC;

protected override void OnInit()
{
    // An example of creation AC indicator
    AC = Core.Indicators.BuiltIn.AC();                
}

An indicator can provide some parameters and you can specify them during creation:

Indicator EMA;

protected override void OnInit()
{
    // An example of creation EMA indicator with parameters: 
    // Period = 10
    // PriceType = Open
    EMA = Core.Indicators.BuiltIn.EMA(10, PriceType.Open);         
}

You can create a few copies of one indicator or a few different indicators if needed:

Indicator fastEMA;
Indicator slowEMA;

protected override void OnInit()
{
    // An example of creation a few EMA indicators with different parameters     
    fastEMA = Core.Indicators.BuiltIn.EMA(12, PriceType.Open);         
    slowEMA = Core.Indicators.BuiltIn.EMA(26, PriceType.Open);         
}

Now we need to assign the created indicator to our current script — which means it will use symbol and quotes from its parent. You can do this via AddIndicator method:

Indicator EMA;

protected override void OnInit()
{
    // Create EMA indicator
    EMA = Core.Indicators.BuiltIn.EMA(10, PriceType.Open);

    // Add created EMA indicator as a child to our script
    AddIndicator(EMA);
}
/// <summary>
/// Calculation entry point. This function is called when a price data updates. 
/// </summary>
protected override void OnUpdate(UpdateArgs args)
{
     // Get EMA value for current bar from first line
     double valueFromEMA = EMA.GetValue();

     // Using EMA value in parent indicator
     SetValue(valueFromEMA);            
}
/// <summary>
/// Calculation entry point. This function is called when a price data updates. 
/// </summary>
protected override void OnUpdate(UpdateArgs args)
{
     // Get EMA value for current bar from second line
     double valueFromEMA = EMA.GetValue(5, 1);

     // Using EMA value in parent indicator
     SetValue(valueFromEMA);            
}

This is a total source code of our example. We use two EMA indicators with different period and display their difference on the chart:

using System.Drawing;
using TradingPlatform.BusinessLayer;


namespace IndicatorWithBuiltIn
{   
    public class IndicatorWithBuiltIn : Indicator
    {
        /// <summary>
        /// Built in indicators
        /// </summary>
        Indicator fastEMA;
        Indicator slowEMA;

        /// <summary>
        /// Indicator's constructor. Contains general information: name, description, LineSeries etc. 
        /// </summary>
        public IndicatorWithBuiltIn()
            : base()
        {
            // Defines indicator's name and description.
            Name = "IndicatorWithBuiltIn";

            // Defines line on demand with particular parameters.
            AddLineSeries("line1", Color.CadetBlue, 1, LineStyle.Solid);

            // By default indicator will be applied on main window of the chart
            SeparateWindow = true;
        }

        /// <summary>
        /// This function will be called after creating an indicator as well as after its input params reset or chart (symbol or timeframe) updates.
        /// </summary>
        protected override void OnInit()
        {
            // Create first instance of EMA indicator with Period 12
            fastEMA = Core.Indicators.BuiltIn.EMA(12, PriceType.Open);
            AddIndicator(fastEMA);

            // Create second instance of EMA indicator with period 26
            slowEMA = Core.Indicators.BuiltIn.EMA(26, PriceType.Open);
            AddIndicator(slowEMA);

        }

        /// <summary>
        /// Calculation entry point. This function is called when a price data updates. 
        /// </summary>
        protected override void OnUpdate(UpdateArgs args)
        {
            // Calculate difference
            double difference = fastEMA.GetValue() - slowEMA.GetValue();

            // Use difference as a value for parent indicator
            SetValue(difference);
        }
    }
}

And a result of this indicator on the chart:

PreviousInput ParametersNextIndicator with custom painting (GDI)

Last updated 5 years ago

Was this helpful?

Everything is ready to use this indicator in our calculations. After receiving new quotes it will be calculated automatically. You can access its values via method:

In case you need to access value for previous bars or value from other indicators line you can use the offset and a lineIndex parameter of a _**_method:

As you can see it was not really difficult to create this indicator. Before starting writing your own code, check first, maybe the required calculations are already available in a built-in set. OptimusFLOW team is constantly working on adding new built-in indicators. If you have any ideas and proposals, what we should add — feel free to .

GetValue
GetValue
contact us
In the additional window of the chart we can see result of our calculations