Need help indentifying indicator - page 186

 
12BPRO:
Dear ALL,

Could someone tell me what this indicator name is and where can I download the mq4 file...

Any suggestion is highly appreciated....

yours truly

AZRUL...

PS: I have got a copy already.... something similar to that one..... but it is a decompile version

Hello 12BPRO , that is two indicator in the picture .

1) Average Range.mq4 ( i have modify just show average range and daily range )

2) !MT4 CURRENCY POWER.mq4 ( you can search in the forum some where )

P.S- it cant work correctly in new build 600++

If you cant find it , when i reach home i will up load for you .

Steven .

 
stevenpun:
Hello 12BPRO , that is two indicator in the picture .

1) Average Range.mq4 ( i have modify just show average range and daily range )

2) !MT4 CURRENCY POWER.mq4 ( you can search in the forum some where )

P.S- it cant work correctly in new build 600++

If you cant find it , when i reach home i will up load for you .

Steven .

Dear Steven,

I have got it.... THANKS FOR THE TIP...

Just in case someone else is interested in learning how to sort.... here is the code base...

Files:
 

Hi, i dont know mql language much, so i need your help. can anyone explain basically how this indicator forms the candle into a new one, i mean what rules are used. thank you

Files:
 

Hi Anonimm,

The rules look the same as a regular candle...but the difference I see is that there are no wicks...it's all one bar...and you can change the color of the candles in the user settings.

No instructions inside the code on how to use the candles as bars without the wicks...

Maybe someone here knows and can tell us.

Hope this helps,

Robert

 
anonimm:
Hi, i dont know mql language much, so i need your help. can anyone explain basically how this indicator forms the candle into a new one, i mean what rules are used. thank you

Hi Anonium, in the code header it explains it somewhat::::

//| Here is a simple code to plot the candlesticks in the NinjaTrader|

//| or eSignal style. After you apply this indicator, change the |

//| settings in Properties (F8) Bar Up/Down, Bull/Bear Candle to None|

//| and the color scheme "... on White". You'll have the candles |

//| displayed with the shadows (wicks) black and candle bodies |

//| (themselves only) lime and red.

Files:
 

let me answer my question , new bar includes just high and low , these are main cadlle's open and close price...thats all

 
anonimm:
let me answer my question , new bar includes just high and low , these are main cadlle's open and close price...thats all

anonimm

that indicator simply draws a candle

The part of the code doing that is this :

haOpen=Open[pos];

haClose=Close[pos];

haHigh=High[pos];

haLow=Low[pos];

ExtMapBuffer1[pos]=haLow;

ExtMapBuffer2[pos]=haHigh;

ExtMapBuffer3[pos]=haOpen;

ExtMapBuffer4[pos]=haClose;

all 4 prices are used for that

 
anonimm:
let me answer my question , new bar includes just high and low , these are main cadlle's open and close price...thats all

Anonimm, for some reason completely missed your question, Sorry about that, but Thanks to Mladen for his answer.

 

Dear ALL,

I am trying to find an indicator that uses a Message Box option....

Does anyone have a MQ4 file....

I will be great full for any sample that uses this function...

I am trying to make an sound alert that buzzzz until I select the OK button....

Thanks for your time and consideration...

yours truly,

AZRUL...

 
12BPRO:
Dear ALL,

I am trying to find an indicator that uses a Message Box option....

Does anyone have a MQ4 file....

I will be great full for any sample that uses this function...

I am trying to make an sound alert that buzzzz until I select the OK button....

Thanks for your time and consideration...

yours truly,

AZRUL...

12BPRO

Message boxes are disabled in indicators (they can be used only from EAs). Official explanation some few years ago was that it could freeze terminal (sounds familiar ?)

Reason: