Nicolas

Value Chart Indicator

Category: Indicators By: Nicolas Created: April 23, 2016, 3:12 PM
April 23, 2016, 3:12 PM
Indicators
35 Comments
Value Chart Indicator

Here is the value chart indicator coded for the new ProRealTime v10.3 with custom candles made with DRAWCANDLE and alerts BUY/SELL arrows.

This indicator draw candlesticks over a normalized scale created dynamically from the last highest/lowest values over n period. It attempts to spot market oversold and overbought area on a short time scale, when price would revert to its mean value.

This kind of indicator is well used in binary options trading, in many different strategies.

When price make rebound over the oversold/overbought levels (candle spike rejection), arrows are drawn to specify trades entries.

//parameters :
//ExtDepth = 5
//Overbought = 8
//SlightlyOverbought = 6
//Oversold = -8
//SlightlyOversold = -6

if barindex>ExtDepth then
 sumHigh = summation[ExtDepth](high)
 sumLow = summation[ExtDepth](low)

 floatingaxis = 0.1 * (sumHigh+sumLow)
 volatilityunit = 0.04 * (sumHigh-sumLow)

 vcOpen = ((open-floatingaxis) / volatilityunit)
 vcClose =((close-floatingaxis) / volatilityunit)
 vcHigh = ((high-floatingaxis) / volatilityunit)
 vcLow = ((low-floatingaxis) / volatilityunit)

 if vcClose>vcOpen then
  DRAWCANDLE(vcOpen,vcHigh,vcLow,vcClose)coloured(10,240,10) bordercolor(0,200,0)
else
  DRAWCANDLE(vcOpen,vcHigh,vcLow,vcClose)coloured(240,10,10) bordercolor(200,0,0)
 endif

 if vcLow<Oversold and vcClose>SlightlyOversold then
  DRAWARROWUP(barindex,vcLow-0.5)coloured(10,255,10)
 endif

 if vcHigh>Overbought and vcClose<SlightlyOverbought then
  DRAWARROWDOWN(barindex,vcHigh+0.5)coloured(255,10,10)
 endif
endif

RETURN  Overbought COLOURED(250,250,250) STYLE(DOTTEDLINE,1)  as "overbought area", SlightlyOverbought COLOURED(250,250,250) STYLE(DOTTEDLINE,1) as "slightly overbought area", Oversold COLOURED(250,250,250) STYLE(DOTTEDLINE,1) as "oversold area", SlightlyOversold COLOURED(250,250,250) STYLE(DOTTEDLINE,1) as "slightly oversold area"

 

Download
Filename: Value-Chart-10.3.itf
Downloads: 1095
Nicolas
Nicolas Legend
I created ProRealCode because I believe in the power of shared knowledge. I spend my time coding new tools and helping members solve complex problems. If you are stuck on a code or need a fresh perspective on a strategy, I am always willing to help. Welcome to the community!
Author’s Profile

Comments

manchokcity
7 years ago
#

WE NEED THIS IN MQL4 OR EX4

Nicolas
7 years ago
#

We do not provide MT4 indicator in our website, all the codes around are made for Prorealtime trading software.

cassio
7 years ago
#

amigo você tem esse indicador para mt4 ou mt5.. ?

helloe
9 years ago
#

do u have same indicator for mt4 ? as mq4 ?

patrick3
9 years ago
#

Merci Nicolas pour cet indicateur, il me tarde de faire les tests

leyoy
10 years ago
#

Bonjour, je viens de l'installer sur 10.3 ... comment faire apparaitre les flèches sur l'indicateur ?

Merci :)

Nicolas
10 years ago
#

Les flèches apparaissent d'elles-mêmes selon les signaux de l'indicateur.

leyoy
10 years ago
#

Elles viennent d'apparaitre après redémarrage. Merci Nicolas. Du coup, les signaux sont à prendre que lorsqu'il y a les flèches ou aussi dans zones en pointillées ?

Sofitech
10 years ago
#

On peut avoir la version 10.3 par défaut en utilisant l'offre Prorealtime CFD ou il faut le demander spécifiquement ??

 

Vin's Regnault
10 years ago
#

Ok, if you tell it, I believe you ! Your work is great you have a real experience in trading so i  listen to you ! Thank you ! have a nice day !

Vin's Regnault
10 years ago
#

My question was about how work the value chart, because thank's to my research i think that the MBFX timing is a king of value chart but apply to the Gravity Center.

Knowing how work this indicator could help me !

I have took contact with doc trading and he is agreed to programme this indicator if i find the formula !

Thank's for your answer !

(Sorry for my english , i'm not already fluent in english but i try to improve it )

Nicolas
10 years ago
#

Don't waste your time, the MBFX timing is nothing else than a stochastic oscillator. This indicator is a pure commercial repackage of an already best-known indicator,  a so-called "scam". In fact, the MBFX came after the gravity center to find better entry points to the mean-revert function of the GC. Stochastic like RSI or any other bounded indicator try to identify the center point of price and so draw its deviations. You should investigate on how indicators work and why and for what they were made instead of follow them blindfolded, believe me you will learn a lot! :)

Vin's Regnault
10 years ago
#

Hi dear nicolas,

Your work is awesome !

I'm interessed by the mathematical formula of the value chart, if it's possible and if isn't a problem for you, Could i take contact with you ?

I want to know how this indicator work to programme an other indicator.

Yours Sincerely

Vincent Regnault

Nicolas
10 years ago
#

Hi Vincent, you can use the forum for any question regarding trading or programming. Regards.

Cris48
10 years ago
#

 Dear Nicolas, 

Problem is solved . Not all the graphics feature can be calculate with EOD data. With realtime, everythings works well.

Cristiano

Nicolas
10 years ago
#

Thanks for feedback about this trouble. Didn't knew that!

Cris48
10 years ago
#

No Nicolas, any kind of errors .... If you want I can send you some snapshot.. 

 

Nicolas
10 years ago
#

Please use the forum for that, it could of interest for any other person in the same case. Thanks a lot.

Cris48
10 years ago
#

Dear Nicolas, I tried all the graphical example, with cut & paste your code. The only one that it works in the change backround colors, not all the others. Maybe is my Imac, or some settings?

Cristiano

Nicolas
10 years ago
#

Very strange.. Are there any error messages in the platform?

Cris48
10 years ago
#

Hi Nicolas, thank you for your answer . I'm using the 10.3 beta version (end of day data), and I really can't draw anything (segment, line, arrow ....).I'm a quite skill with the code, but in this area, very interesting for me (I'm now using for forex trade, metatrader), I'm not able to visualize graphical object.

Cristiano

Nicolas
10 years ago
#

I made a lot of graphical example in this forum topic: http://www.prorealcode.com/topic/the-next-prorealtime-version-10-3-and-new-graphical-functionnalities/

Maybe you could test other drawing features to see if everything's ok?

Hockeytrader
10 years ago
#

i have the v10.2 version of this. I've been working on a automated strategy containing this indicator. Anyone more that had those thoughts?

m-zeter
10 years ago
#

Hello Nicolas,

it`s me again. Maybe you know the answer. Is it possible to make a alarm for the down arrow and up arrow. I don't find a possibility in version 10.3, because there is no option for the arrows.  Or I change it and say for example: add 100 for the uparrow and make a alarm >100. but this would be a temporary solution ;)
best wishes

Cris48
10 years ago
#

Hi Nicolas, thank you for your answer . I'm using the 10.3 beta version (end of day data), and I really can't draw anything (segment, line, arrow ....)

I'm a quite skill with the code, but in this area, very interesting for me (I'm now using for forex trade, metatrader), I'm not able to visualize graphical object.

 

Cristiano

Nicolas
10 years ago
#

No sorry, it's not possible to launch sounds alerts by code.

Cris48
10 years ago
#

Dear Nicolas,

Why I'm not able to draw the arrows in the indicators?

Cristiano

Nicolas
10 years ago
#

Hi Cristiano, this indicator is intended to work only from the new version 10.3 of ProRealTime. There is another version of this one for version 10.2 here: http://www.prorealcode.com/prorealtime-indicators/value-chart-highlow/ But it doesn't have arrows signals which are the newest graphical capabilities of the new version.

m-zeter
10 years ago
#

Ups...you are right! My fault. Now I try to scale it ;)
Thanks for your quick answer.

ProRealCode ProRealCode
Loading...