Indicators: Kijun-sen + Envelope

 

Kijun-sen + Envelope:

Kijun-sen + Envelope

Author: file45

 
Very nice.
 
very nice indeed. I fiddled a bit and it seems to me, for 15m scalping a deviation somewhere around 30 should work nicely.
 

Hello,

Thank you for this indicator!

I try to set it for all timeframes by basing on EURUSD chart.

In order to avoid to set the 2 main parameters at each timeframe changing, I added a little piece of code with the setting for all timeframes :

===================================================

int init()

{

switch(Period()) {

case 1 : Kijun_Sen_Period=112; Envelope_Deviation= 100; break;

case 5 : Kijun_Sen_Period= 85; Envelope_Deviation= 330; break;

case 15 : Kijun_Sen_Period= 45; Envelope_Deviation= 550; break;

case 30 : Kijun_Sen_Period= 40; Envelope_Deviation= 700; break;

case 60 : Kijun_Sen_Period= 34; Envelope_Deviation= 800; break;

case 240 : Kijun_Sen_Period= 26; Envelope_Deviation=1700; break;

case 1440 : Kijun_Sen_Period= 22; Envelope_Deviation=3000; break;

case 10080 : Kijun_Sen_Period= 17; Envelope_Deviation=8000; break;

}

SetIndexStyle(0,DRAW_LINE);

...

==============================================

you can put your own setting in the code.

 
 

Why keep re-setting a Scrip, Indicator or EA default parameter from, say, 34 to 50 ? Permanently change the default setting to 50 or make a copy with default 50 !

See HERE for instruction. It's dead easy ! - author: file45
 
nivti1:

Hello,

Thank you for this indicator!

I try to set it for all timeframes by basing on EURUSD chart...............

   Thanks for sharing
 
mql4_comments:
Here is my system using this indicator, visit my site: http://anzforextrader.blogspot.com/2013/08/best-bb-macd-with-kijun-envelope-trend.html
   Thanks for sharing