T3B trading system

Status
Not open for further replies.

rpc

Active Member
#21
Conversion to Amibroker is so simple and easy then the original t3b Metastock formula.

The original formula create Peak line and Trough Line could not cover the last 4bars. in the end they created two more last4barspeak line and last4bartrough line to cover up the problem.

Hi ashokram1. If you need the AmiCode, pls PM me.
Hi KelvinHand
Pls upload/post it here so everyone can beneit from it
Thanks
 

KelvinHand

Well-Known Member
#22
Hi KelvinHand
Pls upload/post it here so everyone can beneit from it
Thanks
I only give the Peak n Trough lines as part of the effort is done by a friend which i forgot about him, It not totally my effort, so did not want to show the formula here. That the most difficult task to some people. The rest you need to convert from the Metastock yourself.

The last t3b metastock program was final7. I don't know whether the given was from there.
 
Last edited:

KelvinHand

Well-Known Member
#23
Just to show my effort.

Code:
hxxp://[email protected]/VBPGW88NML
The MACD on the Volume was not that good on Amibroker as compare to metastock when zoom in. It is best view with at least 500 bars.
I more prefer the MACDBB.

The Year/Month Hi and Lo are combined into 1 indicator window.
Red line is the Year/Month Hi.
Blue inverted line is the Year/Month Low.
 
Last edited:
#24
Just to show my effort.

Code:
hxxp://[email protected]/VBPGW88NML
The MACD on the Volume was not that good on Amibroker as compare to metastock when zoom in. It is best view with at least 500 bars.
I more prefer the MACDBB.

The Year/Month Hi and Lo are combined into 1 indicator window.
Red line is the Year/Month Hi.
Blue inverted line is the Year/Month Low.

Hello Kelvinhand...

i can;t pm you

If you have the code for amibroker .. please do pm me

thanks
 

KelvinHand

Well-Known Member
#28
Here the 2x/3x/4x/5x Accumulation volume metastock concept:
Code:
if V>=5*Mov(V, 125,S) then plot 5 else plot 0
elseif V>=4*Mov(V, 125, S) then plot 4 else plot 0
elseif V>=3*Mov(V, 125, S) then plot 3 else plot 0
elseif V>=2*Mov(V, 125, S) then plot 2 else plot 0
The concept is it compare the current day volume over the average volume of half a year (125days)

Why a year is 250 days ?
The reason is there is 52weeks in a year. Stock market is 52*5 = 260 days.
Assume Typical holiday is 10 days. So 260-10 = 250 days per year.

So 1/2 of 250 = 125 days as half a year.

Any of you want to come out the code conversion for the above metastock ?
 

KelvinHand

Well-Known Member
#29
Here the t3b metastock concept of 1/2/3 year high
Code:
if (H>ref(HHV(H, 3*250), -1) then plot 3 else 0
elseif (H>ref(HHV(H, 2*250), -1) then plot 2 else 0
elseif (H>ref(HHV(H, 1*250), -1) then plot 1 else 0
Here the t3b metastock concept of 3/6/9 month high
Code:
if (H>ref(HHV(H, 9*20), -1) then plot 9 else 0
elseif (H>ref(HHV(H, 125), -1) then plot 6 else 0
elseif (H>ref(HHV(H, 3*20), -1) then plot 3 else 0 

note: 1 month is 20days
Anyone want to learn to create the amibroker ?
 
Status
Not open for further replies.

Similar threads