MultiCharts
futures io


Categories Help    

MultiCharts
MultiCharts Downloads / MultiCharts Indicators

Share MultiCharts indicators, EasyLanguage indicators.


Sort by
Filter

Show full/short entries Entries
Murrey Math Oscillator 5 *
Price Oscillator with Murrey math lines.
 
Suggest other entries I might like
Details: Murrey Math Oscillator


June 27th, 2022
Size: 12.45 KB
Downloaded: 74 times

Keywords: histogram math murrey oscillator
FTLM iT3 Candles Histogram 5 *
This is an FTLM digital filter with a smoothing algorithm, also it shows candle formations in the histogram. The candles help to spot turning points as they get squeezed.
 
Suggest other entries I might like
Details: FTLM iT3 Candles Histogram


June 27th, 2022
Size: 19.07 KB
Downloaded: 40 times

Keywords: digital filter ftlm histogram
RSI Dynamic Zones iT3 4 *
This is an RSI with Dynamic zones with a Smoothing algorithm. It was translated from an MT4 indicator written and shared by Mladen, and now we can use it in Multicharts.

If you Download the Indicator and like please click on the thanks button.


If you have any questions you can go to my Trading journal.
 
Suggest other entries I might like
Details: RSI Dynamic Zones iT3


April 4th, 2022
Size: 7.59 KB
Downloaded: 98 times

Keywords: dynamic rsi smoothed zones
Velocity OrderFlow 1.0 for Multicharts 4 *
Here is the Velocity OrderFlow for Multicharts. It's meant to be used with Footprint charts.
It provides the bid volume, ask volume, delta, and duration of the bar in seconds.
If the duration of the bar is beneath a certain threshold it will plot an arrow over or under the bar
depending on if the signal is bearish or bullish. This is the Velocity arrow. I use Volume charts or contract charts. But it could be used with tick charts as well. I included an indicator called TaiChi it's a good indicator. It's a modified supertrend with no extremes just the middle line.


Test it out, I just coded it in a day so it could have some bugs.


Come discuss the Velocity OrderFlow Tools with me at my trading journal.
 
Suggest other entries I might like
Details: Velocity OrderFlow 1.0 for Multicharts


March 22nd, 2022
Size: 32.29 KB
Downloaded: 83 times

Keywords: footprint multicharts orderflow velocity
Grid Trading Algo 1.0 for Multicharts
This is a Grid trading algo that sets levels based on the tick size, grid step, and grid size. This algo may be profitable with different settings depending on the instrument. I have released it here so it can be tested, modified, or improved into something better. It's very simple the code is simple and clear. I also will include a Grid Levels indicator so you can see where the levels are at.

Come discuss the Grid Trader Algo with me at my trading journal.
 
Suggest other entries I might like
Details: Grid Trading Algo 1.0 for Multicharts


March 22nd, 2022
Size: 32.82 KB
Downloaded: 50 times

Keywords: algo bot grid indicator multicharts trading
Tick Counter
Tick Counter next to the last bar for Multicharts.Net. Be sure to uncheck "skip identical ticks"
 
Suggest other entries I might like
Details: Tick Counter


December 19th, 2021
Size: 1.49 KB
Downloaded: 27 times

Keywords: counter tick
Function for Normalizing Indicator Values 5 *
What follows is a function that normalizes an indicator value between a max and min value of +50/-50. This is a derivation of the normalization function as described in the section "Historical Adjustment to Improve Stationarity" within the book Statistically Sound Machine Learning for Algorithmic Trading of Financial Instruments by David Aronson and Timothy Masters.

The goal of normalization is to retain any predictive value of an indicator that gains its importance from its current value relative to recent values. This normalization process imparts stationarity on the indicator. From the text, "In most case, stationarity improves the accuracy of predictive models. (Recall that, roughly speaking, stationarity means that the statistical properties of an indicator do not change over time.)".

The attached function is in easylanguage syntax. It should be able to take any raw indicator value and normalize it by both centering and scaling it within a range of +50/-50.

Attached is a text file of the easy language code.

I hope you find this useful.

Updates:
08/15/2021 v001 - corrected the function name return value to the name of the text file

Cheers,
JZ
 
Suggest other entries I might like
Details: Function for Normalizing Indicator Values


August 14th, 2021
Size: 2.77 KB
Downloaded: 102 times
Stochastic MACD from TASC November 2019
This is the Stochastic MACD Indicator for Multicharts. Enjoy.
 
Suggest other entries I might like
Details: Stochastic MACD from TASC November 2019


March 11th, 2021
Size: 4.74 KB
Downloaded: 60 times
Kaufman AMA with Trend Change
This indicator is the Kaufman Adaptive Moving Average, a/k/a KAMA, but which changes color when the indicator changes direction. This is a direct descendant of the Mov Avg Adaptive indicator that comes with MultiCharts.

I like single line indicators that change color when a trend changes, so this is my implementation of the KAMA with those attributes. The screenshot here is actually from TradeStation, but it looks and functions the same in MC.

Indicator Name: Mov Avg Adaptive Color Change
Inputs: Same as a normal KAMA, plus:
  • UsePlotColoring >>> set to true for coloring; false to turn it off
  • UpTrendColor >>> self explanatory
  • DownTrendColor >>> self explanatory
Small Difference in Original Calculation:
I added the Round2Fraction function to the MAA calculation, to round to the nearest minimum move for the chart. This helps filter out minor fluctuations when the indicator is practically flat, that may show a change in trend that isn't there. I don't believe this fundamentally changes anything, from my observations.

Import the PLA and apply to a chart. You're all set!

I posted a TradeStation version in that section, as the syntax is slightly different.
 
Suggest other entries I might like
Details: Kaufman AMA with Trend Change


September 30th, 2020
Size: 5.55 KB
Downloaded: 131 times

Keywords: adaptive average kama kaufman moving
Donchian Channel 5 *
MultiCharts .NET64 Version 12.0 Release (Build 18187)

 
Code
using System;
using System.Drawing;
using System.Linq;
using PowerLanguage.Function;

namespace PowerLanguage.Indicator
{
	public class Donchian Channel : IndicatorObject
	{
		public Donchian Channel(object _ctx):base(_ctx)
		{
			n_bars = 5;
		}

        [Input]
        public int n_bars { get; set; }
		
		private IPlotObject plothigh, plotlow;
		
		protected override void Create()
		{
			plothigh = AddPlot(new PlotAttributes("plothigh", EPlotShapes.Line, Color.Red));
			plotlow = AddPlot(new PlotAttributes("plotlow", EPlotShapes.Line, Color.Red));
		}
		
		protected override void StartCalc()
		{
		}
		
		protected override void CalcBar()
		{
			if(Bars.High[5] > 0 && Bars.Low[5] > 0)
			{
				plothigh.Set(Bars.High.Highest(n_bars));
				plotlow.Set(Bars.Low.Lowest(n_bars));
			}
		}
	}
}
 
Suggest other entries I might like
Details: Donchian Channel


October 7th, 2019
Size: 1.73 KB
Downloaded: 129 times
 



 
Category
 



Copyright © 2023 by futures io, s.a., Av Ricardo J. Alfaro, Century Tower, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada), info@futures.io
All information is for educational use only and is not investment advice.
There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.