[go: up one dir, main page]

0% found this document useful (0 votes)
229 views1 page

Genesis Matrix Trading - Indicators - ProRealTime

The document describes the Genesis Matrix trading system indicator, which uses four color-coded signals based on the TVI, CCI, T3 moving average, and GannHiLo to determine buy or sell orders. It emphasizes that orders are triggered when all signals are the same color, and the TVI requires volume data to function correctly. Additionally, it includes code snippets for the indicator and discussions about its application and troubleshooting in trading forums.

Uploaded by

louiswep12
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
229 views1 page

Genesis Matrix Trading - Indicators - ProRealTime

The document describes the Genesis Matrix trading system indicator, which uses four color-coded signals based on the TVI, CCI, T3 moving average, and GannHiLo to determine buy or sell orders. It emphasizes that orders are triggered when all signals are the same color, and the TVI requires volume data to function correctly. Additionally, it includes code snippets for the indicator and discussions about its application and troubleshooting in trading forums.

Uploaded by

louiswep12
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Library Forums Training Courses Marketplace Blog Help 

 0

 

This indicator is a dashboard for the Genesis Matrix trading system. The 4 dots represents (from top to bottom):
Genesis Matrix Trading  31   v10.3
The TVI (Ticks Volumes Indicator) slope (ascending or descending = blue or red)
CCI above or below 0 (blue or red)
The T3 moving average slope (ascending or descending = blue or red)
A GannHiLo signal (close is above the MA of Highs = blue, below the MA of Lows = red)

According to the original rules of the system, orders are triggered once all of the dots are from the same color, in two words, buy when all the dots are turned from red to blue and vice-versa. The
complete system could have more rules, but I’m not aware of them.

The TVI needs Volumes to be calculated correctly (will not work on instruments that your broker don’t deal Volumes).

The indicator was converted from MT4 by a request in the spanish forum: Genesis-Matrix.Convertir de MQ4 a PRT

1 //PRC_Genesis Matrix | indicator


2 //10.09.2018
3 //Nicolas @ www.prorealcode.com
4 //Sharing ProRealTime knowledge
5 //converted from MT4 indi
6
7 // --- settings
8 //TVI_Settings
9 TVIr=12
10 TVIs=12
11 TVIu=5
12 //CCI_Settings
13 CCIPeriod=20
14 //T3_Settings
15 T3Period=8
16 //GannHiLo_Settings
17 GannHiLoPeriod=10
18 // --- end of settings
19
20 // Set histogram positions
21 IDXTVI=0.25
22 IDXCCI=0.0
23 IDXT3=-0.25
24 IDXGHL=-0.5
25
26 //TVI (Ticks Volume Indicator)
27 Mypoint=pointsize
28 UpTicks=(Volume+(Close-Open)/MyPoint)/2
29 DownTicks=Volume-UpTicks
30 EMAUpTicks=average[TVIr,1](UpTicks)
31 EMADownTicks=average[TVIr,1](DownTicks)
32 DEMAUpTicks=average[TVIs,1](EMAUpTicks)
33 DEMADownTicks=average[TVIs,1](EMADownTicks)
34 TVIcalculate=100.0*(DEMAUpTicks-DEMADownTicks)/(DEMAUpTicks+DEMADownTicks)
35 TVI=average[TVIu,1](TVIcalculate)
36 //ProcessTVI
37 if TVI>=TVI[1] then
38 drawtext("■",barindex,IDXTVI,dialog,bold,20) coloured(0,90,255)
39 else
40 drawtext("■",barindex,IDXTVI,dialog,bold,20) coloured(255,0,0)
41 endif
42
43 //CCI (Commodity Channel Index)
44 dSig=CCI[CCIPeriod](typicalPrice)
45 //ProcessCCI
46 if dSig>0 then
47 drawtext("■",barindex,IDXCCI,dialog,bold,20) coloured(0,90,255)
48 else
49 drawtext("■",barindex,IDXCCI,dialog,bold,20) coloured(255,0,0)
50 endif
51
52 //T3
53 e1 = ExponentialAverage[T3Period](close)
54 e2 = ExponentialAverage[T3Period](e1)
55 e3 = ExponentialAverage[T3Period](e2)
56 e4 = ExponentialAverage[T3Period](e3)
57 e5 = ExponentialAverage[T3Period](e4)
58 e6 = ExponentialAverage[T3Period](e5)
59 b = 0.618
60 b2 = (b * b)
61 b3 = (b * b * b)
62 c1 = -b3
63 c2 = (3 * b2) + (3 * b3)
64 c3 = (-6 * b2) - (3 * b) - (3 * b3)
65 c4 = 1 + (3 * b) + b3 + (3 * b2)
66 avg = c1 * e6 + c2 * e5 + c3 * e4 + c4 * e3
67 //ProcessT3
68 if avg>=avg[1] then
69 drawtext("■",barindex,IDXT3,dialog,bold,20) coloured(0,90,255)
70 else
71 drawtext("■",barindex,IDXT3,dialog,bold,20) coloured(255,0,0)
72 endif
73
74 //GannHiLo
75 if Close>average[gannhiloperiod](high)[1] then
76 gann=1
77 elsif Close<average[gannhiloperiod](low)[1] then
78 gann=-1
79 endif
80 //ProcessGann
81 if gann>0 then
82 drawtext("■",barindex,IDXGHL,dialog,bold,20) coloured(0,90,255)
83 else
84 drawtext("■",barindex,IDXGHL,dialog,bold,20) coloured(255,0,0)
85 endif
86
87 return

Share this

CCI dashboard gann T3 TVI volume volumes

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any nancial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits
and is only suitable for experienced investors who have su cient nancial means to bear such risk.

ProRealTime ITF les and other attachments :

Filename : prc_genesis-matrix.itf
Downloads : 858

 How to import ITF les into ProRealTime platform?

Find other exclusive trading pro-tools on

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

Nicolas  09/10/2018 Unfollow


576 posts • 1889 Followers

Juanjo • 09/10/2018 # Reply

Buenos Días,

habia leido que la estrategia funcionaba bien para periodos inferiores a 1 horas. En periodo superiores que tal se comportaría?…..serviria para acciones?
Gracias

Nicolas • 09/10/2018 #
Creo que el indicador sigue siendo válido para cualquier período de tiempo o instrumento. Las condiciones son bastante simples y se basan en indicadores
simples, por lo que deben ser consistentes para cualquier instrumento.

Fr7 • 09/10/2018 # Reply

El sistema de trading “Genesis Matrix Trading“, se usa en grá cos de 5 Minutos.


Reglas de entrada a Mercado

* El indicador “Genesis Matrix Trading” debe tener los 4 cuadrados del mismo color al cierre de la vela actual
* Los inidicadores “Stochasticos” tanto el stochastico de 5minutos y el stochastico de 15minutos deben venir del área de 20 – 80
* El indicador Heiken hashi debe cerrar la actual vela por encima o por debajo de la media amarilla 5

Sobre Stop Loss y Take Pro t buscaremos áreas de S/R, el sistema nos proporciona un indicador que nos marca las zonas importantes, podemos establecer en
esos puntos nuestro TP.

Juanjo • 09/10/2018 # Reply

Gracias por la aclaracion

fxforex93 • 09/10/2018 # Reply

Hello @Nicolas, I have a problem with this indicator. you can check the di erence between MT4 and Prorealtime. For me the top bar as already red. ANd you can
see small other di erence . thank you .

fxforex93 • 09/10/2018 # Reply

the link of this picture : https://www.cjoint.com/c/HJBmfRi5bGL

Nicolas • 09/10/2018 #
ok, but 1. you are comparing di erent data (same broker or not?), same timezone? same custom trading hours?
2. with IG, there are no Volumes for forex pairs.
3. is it the same version of the dashboard that I have coded?

fxforex93 • 09/10/2018 # Reply

Bonjour Nicolas. je vais vous parler en français. j’ai un simple abonnement prorealtime (je ne suis pas chez IG). je n’ai pas pris l’option volume. c’est peu etre pour
cela que la barre du haut est toujours rouge. après je conçois qu’il y ai une petite di érence. certains petits carrées ne sont pas les mêmes. Vous pensez que
cette barre rouge que ne deviens jamais bleu viens de ce problème. j’ai simplement télécharger votre indicateur en haut de cette page. y a t’il un autre indicateur
qui pourrai remplacer cela. merci

Nicolas • 09/10/2018 #
Si il n’y a pas de volumes, le TVI ne pourra pas se calculer, donc oui le “problème” vient bien de cela.

eckaw • 09/10/2018 # Reply

Hi Nicolas, I’m using this indicator when there is con uence over 3 di erent timeframes (5min, 15min, 1h) together with ADX to con rm the strength of the trend –
entering positions in dips / pull-backs. Would it be possible to code a screener that looks for the colour of the 4 boxes of the genesis matrix indicator to match (all
blue or all red) and ADX is over 20/25?

Nicolas • 09/10/2018 #
Yes it is indeed possible. Create a topic in the screener forum and explain what you need and with screenshots if possible.

KyleReed • 09/10/2018 # Reply

i’ve been using this for a few days now and it’s really helped me a lot in timing the execution and closing of trades. is it easily possible to add measurable output
that can be used for example in a screener , because when trying it just says “no useable output” – just a row number and 0/1 signal?

b i link b-quote del ins img ul ol li code more close tags Add PRT code
Add a comment...

Post Comment

Likes

+15 more likes

Related users ' posts

Iván foufurieux ThibauldR_Weekenday


 1 month ago  2 months ago  3 months ago

VSI Indicator: Volume Strength


ANTS indicator Breakout Entry Point Indicator
#Relative Strength Index #RSI #volume #vsi
#ANTS #volume #breakout #signals #volume

Indicators 4 1
Indicators 0 3 Indicators 1 0
MARTINALA CARTINA
fantastico, atlante
good morning the indicatordoes not display the photo
you postes only upload nessages appear ...
foufurieux Iván
Iván Please nd a new image of the indicator  9 months ago
 11 months ago
foufurieux
Sorry impossible adding a new image

Iván
 1 year ago

Pollan Indicator: How to Use it for Accurate Trading Signals


Rolling POC Volume Pro le indicator
#CCI #Oscillator #pollan #RSI
#volume #volume pro le #VPOC

Indicators  10  6
Indicators  15  6
luxrun
Iván grazie Ivàn!
jajaja gracias :)
lee
oliTR Volume Supertrend AI Thank you. Is it possible to convert this to a screener
Very good Iván ! that displays instruments when bulli...
However what would be the modi cation to add to the Iván
#IA #supertrend #volume
code in order to dis... //---------------------------------------------------------------//
MARTINALA CARTINA //PRC_Pollan Indicator
grazie mille magni co,si in e etti se ci fosse la possibilta /...
di impostare orai prede niti... Indicators  15  10

oliTR
philippe59139
Yes, I am sure it should work perfectly, but I found very
philippe59139  1 year ago
 1 year ago
strange vehavior like this one:

...
oliTR
well,
it seems that the issue came from my backTest period
which was not long enough.
sorry
oliTR
Dear Ivan,
why, in line 86, there is "currentsuperTrend[i]" and not
"currentsuperTrend" only?

MarketPro leLive

zeiiermantrading
#market pro le #volume
 2 years ago
Open High Low Close Volume and Variation% Dashboard

#dashboard #OHLC #variation Indicators  18  7

Razz
Indicators 2 0 Bonjour
Je pense que votre indicateur est très bon. Serait-il
possible d'a cher la heatma...
philippe59139
if marketEtHeamap=1 then

JS
drawtext("#touch#",barindex+10,checkprice,SansSerif,S
 2 years ago
tandard,10) c...
philippe59139
voici pour toi RAZZ il te faut simplement ajouter les
drawtext

https://www.prorealcode.com...
MACD & RSI Overlay (Expo)

#dashboard #MACD #RSI


luxrun
HawkEye Volume Indicator  2 years ago

#volume #volumes Indicators  11  3

Matriciel
Indicators 0 0 Very nice job !
Is it possible to do the opposite because what interests
me is to have the ...
YvesRobert
Hi Matriciel, how can we do this, because stochastic is
limited between 0 and 100 but price ...
Nicolas Traderfox06
 2 years ago
Dear zeiiermantrading,
I really like your approach combining adaptive averages
with MACD in...

Wako volume ratio oscillator


Nicolas
 2 years ago
#volume

Indicators 1 0

Cumulative Volume ZigZag (live version)


Khaled
 3 years ago
#volume #volumes #zigzag

Indicators 5 5
Moving Average Weighted, Volume Adjusted
ste en_burat
Hello Nicolas, #moving average #volume

I have a cumulative histogram update problem, the


indicator often updates ...
taklause Indicators 8 3
Hello Nicolas, if I try to use your indicator in a trading
system, the error on prc pops up ... Rafa
Gio56 Hi Nicolas!
Bonjour Nicolas J'ai le meme souci que ste en ,
l'indicateur ne cumule qu'après avoir redé... I can´t install this indicator. it installs in a separate
window not as an av... Buy & Sell Volume to Price Pressure
Nicolas
Add it on the price, see how: #volume
Nicolas https://www.prorealcode.com/blog/video-tutorials/how-
 3 years ago to-add-an...
Frankyslo1
Indicators  11  4
No consigo instalarlo en el precio en PRL-version 10

Khaled
As this section of the forum is in English, I'll reply in
Nicolas English. I'm using PRT v11, so I d...
 3 years ago sal157011
Don't understand where it says: "Volume Pressure
Histogram: Columns plotted in positive are ...
Khaled
Not sure to understand the question. However, the
columns (Histogram) represent the variable...

Monster Cumulative Delta teamone


 3 years ago

#candlesticks #volume

Indicators  11  6

Alai-n MACZVWAP
Cela fonctionne très bien !!! Super Merci
#MACD #volume #vwap #ZSCORE Enhanced Volume Pocket Pivot
andreabarbuscia
Ciao Nicolas, molto bello questo indicatore, l'ho #pocket pivot #volume
apprezzato molto.
Indicators 4 4
Lo sto testando insieme...
Alai-n Indicators  14  0
DELBERT
Je poste ici un lien a n de mieux appréhender le CVD- Bonsoir , Nicolas , j'ai transféré votre indicateur sur ma
Cumulative Volume Delta : https://www.... PRT 10,3 et j'ai un méssage d'ére...
Nicolas
Vous pouvez essayer en remplacant la ligne avec:
vwapsd = sqrt(average[lengthz](square(clo... Jiankyr82
Nicolas DELBERT  3 years ago
 4 years ago Bonsoir , merci Nicolas , a bientôt .

v10.3
Ichimoku Reading
 4 years ago

v10.3

Price Volume Ratio

#price #Ratio #volume

ema-sma + Volume

#Average #ema #ExponentialAverage #sma #volume Screeners  11  0


Transaction Volume Indicator
#volumes
#volume #volumes

Indicators  21  2
Indicators 3 6
ChemaGeek
Bonjour Nicolas, j'ai récemment découvert cet Ichimoku Reading
indicateur (Regularized Momentum 2017) et je l... I don't know in this case, I just downloaded it again and
YvesRobert no problem for me.
Bonjour, nouveau sur PRT (qq jours), j'essaie un peu de Try to downloa...
voir quel type d'indicateur me convi... Ichimoku Reading
What's the error that appears ?

Suzu Yuk
Yes, it worked with 1Tick with 200 K . Thank you very
much.

contact@prorealcode.com
Trading on leveraged nancial instruments may expose you to risk of loss greater than your deposits and is only suitable for experienced clients with the nancial means to bear such risk. Trading on foreign exchange
instruments (Forex) and contracts for di erence (CFDs) is highly speculative and particularly complex and comes with a high level of risk due to leverage. You must ensure that you understand how these instruments work
and that you can a ord to take the high risk of losing your money. No information on this site is investment advice or a solicitation to buy or sell any nancial instruments.

About · Contact · Terms and conditions · Privacy Policy · Moderation Rules | contact@prorealcode.com | Copyright © 2016-2025 ProRealCode

You might also like