Page 50 of 71

Re: Step Indicators for MT4

Posted: Tue Oct 19, 2021 9:25 pm
by Ganesh
Hi ,mrtools, kindly add option to change colour of the ATR bands as like central line,( Buy trend --GREEN COLOR BANDS AND GREEN COLOUR CENTRAL LINE; Sell trend--RED COLOUR BANDS AND RED COLOUR CENTRAL LINE).THANK YOU INADVANCE.

Re: Step Indicators for MT4

Posted: Tue Oct 26, 2021 5:35 am
by mrtools
thomdel wrote: Mon Oct 25, 2021 4:17 pm @ mrtools


Respected Sir,
Request you to Please Add Button to : Step Kaufman with filter (mtf + alerts + arrows)


Thanks. Thanks. Thanks.
Added button.

Re: Step Indicators for MT4

Posted: Thu Jan 13, 2022 12:51 pm
by mrtools
pantera wrote: Thu Jan 13, 2022 10:48 am Dear Mr. Tools,

If possible, could you please add MTF and/or arrows to this indicator.

Thank you !
Not exactly sure how I smoothed it, but in this version using jurik pre and post smoothing and added mtf and arrows.

Re: Step Indicators for MT4

Posted: Sat Jan 15, 2022 12:52 am
by kvak
Make a candle version of step nema smoothed.
Menu for arrows and lines too.

Re: Step Indicators for MT4

Posted: Thu Jan 20, 2022 5:16 am
by pantera
kvak wrote: Sat Jan 15, 2022 12:52 am Make a candle version of step nema smoothed.
Menu for arrows and lines too.
Image

Image
Kvak,

Great indicator!

I'd like to try to incorporate your indicator into an EA. Just to make my job a bit easier, could you please show a screenshot, from the source code, of the real names of the settings?

Thank you!

Re: Step Indicators for MT4

Posted: Thu Jan 20, 2022 10:02 am
by kvak

Code: Select all

extern enTimeFrames   TimeFrame   = tf_cu;  // Time frame

input int               PreSmooth      = 5;
input double            PreSmoothPhase =  0;
input double            NemaPeriod      = 10;
input int               NemaDepth       = 4;
extern enPrices         MAPrice1         = pr_close;         // Ma Fast price to use
input int               PosSmooth      = 5;
input double            PosSmoothPhase = 0;
input double            inpStepSize     = 5;                  // Step size (pips)

input int               ShadowWidth   =   6;                 // Shadow fast line width
input int               LineWidth     =   2;                // fast lines   width
input color             Upcolor1      = clrMediumSeaGreen; // Bullish fast line  color
input color             Dncolor1       = clrCrimson;       // Bearish fast line  color
input color             Shcolor       = clrGray;         // Shadow fast color



extern bool              ShowCandles = true;            // Candles are visible?
extern bool              ShowLines = true;            // Lines are visible?
extern bool              ShowArrows = true;            // Arrows are visible?


input int             WickWidth        = 1;                 // Candle wick width
input int             BodyWidth        = 2;                 // If auto width = false then use this
input bool            UseAutoWidth     = true;              // Auto adjust candle body width
input color             Upcolor       = clrMediumSeaGreen; // Bullish candles  color
input color             Dncolor       = clrCrimson;       // Bearish candles  color

input bool            alertsOn             = true;              // Alerts?
input bool            alertsOnCurrent      = false;             // Alerts open bar?
input bool            alertsMessage        = true;              // Alerts message?
input bool            alertsSound          = true;              // Alerts sound?
input bool            alertsNotify         = false;             // Alerts notification?
input bool            alertsEmail          = false;             // Alerts email?

input bool             ArrowOnFirst    = false;             // Arrow on first bars true/false
input int              UpArrowSize     = 2;                // Up Arrow size
input int              DnArrowSize     = 2;                // Down Arrow size
input int              UpArrowCode     = 159;              // Up Arrow code
input int              DnArrowCode     = 159;              // Down arrow code
input double           UpArrowGap      = 0.5;              // Up Arrow gap        
input double           DnArrowGap      = 0.5;              // Dn Arrow gap
input color            UpArrowColor    = clrLimeGreen;     // Up Arrow Color
input color            DnArrowColor    = clrOrange;        // Down Arrow Color

input bool               Interpolate = true;            // Interpolate in multi time frame mode on/off?
pantera wrote: Thu Jan 20, 2022 5:16 am Kvak,

Great indicator!

I'd like to try to incorporate your indicator into an EA. Just to make my job a bit easier, could you please show a screenshot, from the source code, of the real names of the settings?

Thank you!

Re: Step Indicators for MT4

Posted: Fri Apr 15, 2022 9:56 am
by Banzai
Step MA

I google but don't see this on this website.

Coder: mladen
released date: 2017?

Attached is a template.
Best to see some good trends on H1 charts.

Re: Step Indicators for MT4

Posted: Tue Apr 19, 2022 3:18 am
by kvak
Step average
Idea from MT5 version from Mladen.
In this indicator have 3 types how to calculate step....
1- clasical, put number how many pips make on step
2- based on ATR
3- based on standart deviation
If you have first method, you must manually adjust step number depends to timeframe or instruments...
When you use method 2 and 3 step calculation is made by percent from ATR, STDEV.
Adapting step period is period of ATR, STDEV. When you have 0, is same like moving average period.
Indicator is MTF, have full price options, arrows and alerts.
Have menu to show original ( non step average ).

Re: Step Indicators for MT4

Posted: Tue Apr 19, 2022 7:39 am
by kvak
kvak wrote: Tue Apr 19, 2022 3:18 am Step average
Idea from MT5 version from Mladen.
In this indicator have 3 types how to calculate step....
1- clasical, put number how many pips make on step
2- based on ATR
3- based on standart deviation
If you have first method, you must manually adjust step number depends to timeframe or instruments...
When you use method 2 and 3 step calculation is made by percent from ATR, STDEV.
Adapting step period is period of ATR, STDEV. When you have 0, is same like moving average period.
Indicator is MTF, have full price options, arrows and alerts.
Have menu to show original ( non step average ).
Replace averages method with Jurik filter

Re: Step Indicators for MT4

Posted: Mon May 02, 2022 1:50 am
by mrtools
thomdel wrote: Sun May 01, 2022 3:49 pm @ mrtools

Respected Sir,

Request you to Please Add these options to : step one more average 2.3 mtf histo
1) Arrows ( Arrow Code - Colour - Size - Gap )
2) Histo Bar width Option to :

Please Note : This Ver is Original Old ver with diff output and is diff from another available ver with arrow.


Thanks. Thanks. Thanks.
Arrow added and histogram width.