I am hoping to bait some one into a real T and A chat about a List of Axioms I have been Honing for a number of years. I wanted to discuss the logic behind it and why it works. I would like to start a List of Axioms / Technical theorems to develop off of
[size=18:cc373b98b8]Technical analysis’ axioms [/size:cc373b98b8]
For example
Axiom one support is a upward movement in price defined by a buy stop
Axiom Two A trend is the failure of support or resistance it starts on low time frames and flow to higher time frames
Axiom Three Momentum is the distance between pivots or height of the wave
Axiom Four. In Forex we tend to revert to the mean as the banks balances their books
Axiom Five The longer I am in the trade the higher probability mathematically of profit
Axiom Six the Longer I am in the trade the more risk I incur
I would like to see a high level of development and discuss on these topics I would like to postulate hypotheses to my peers.
With that said I am going to postulate about a hypotheses
This code is designed to find the direction of the top ten NASDAQ 100 stocks and works off Axiom Two. A trend is the failure of resistance
NASDAQ Top Ten Trend direction
[code:1:cc373b98b8]X:=If(Security("ONLINE:US;MSFT", ExtFml( "PowerPivots.TrendDirection", 1, 1)=1),1,-1);
X1:=If(Security("ONLINE:US;CSCO", ExtFml( "PowerPivots.TrendDirection", 1, 1)=1),1,-1);
X2:=If(Security("ONLINE:US;INTC", ExtFml( "PowerPivots.TrendDirection", 1, 1)=1),1,-1);
X3:=If(Security("ONLINE:US;AMGN", ExtFml( "PowerPivots.TrendDirection", 1, 1)=1),1,-1);[/code:1:cc373b98b8]
This code represents axiom Three
Compressing support
[code:1:cc373b98b8]hp:= ExtFml( "PowerPivots.NthPivotPrice",-1 ,0 , 1);
hp1:= ExtFml( "PowerPivots.NthPivotPrice",-1 ,1 , 1);
hp2:= ExtFml( "PowerPivots.NthPivotPrice",-1 ,2 , 1);
1hp:= ExtFml( "PowerPivots.NthPivotPrice",-2 ,0 , 1);
1hp1:= ExtFml( "PowerPivots.NthPivotPrice",-2 , 1, 1);
1hp2:= ExtFml( "PowerPivots.NthPivotPrice",-2 ,2 , 1);
2hp:= ExtFml( "PowerPivots.NthPivotPrice",-3 ,0 , 1);
2hp1:= ExtFml( "PowerPivots.NthPivotPrice",-3 , 1, 1);
3hp2:= ExtFml( "PowerPivots.NthPivotPrice",-4 ,2 , 1);
3hp:= ExtFml( "PowerPivots.NthPivotPrice",-4 ,0 , 1);
3hp1:= ExtFml( "PowerPivots.NthPivotPrice",-4 , 1, 1);
2hp2:= ExtFml( "PowerPivots.NthPivotPrice",-4 ,2 , 1);
x:=If(hp<hp1 AND hp1<hp2 AND (hp1-hp)<hp2-hp1,1,0);
x2:=If(1hp<1hp1 AND 1hp1<1hp2 AND (1hp1-1hp)<1hp2-1hp1,2,0);
x3:=If(2hp<2hp1 AND 2hp1<2hp2 AND (2hp1-2hp)<2hp2-2hp1,3,0);
x4:=If(3hp<3hp1 AND 3hp1<3hp2 AND (3hp1-3hp)<3hp2-3hp1,4,0);
x+x2+x3+x4[/code:1:cc373b98b8]
Now what if I did this
[code:1:cc373b98b8]X:=Security("ONLINE:US;MSFT", compression of support);
X1:=If(Security("ONLINE:US;CSCO", compression of support););
X2:=If(Security("ONLINE:US;INTC", compression of support););
X3:=If(Security("ONLINE:US;AMGN", compression of support););[/code:1:cc373b98b8]
This would give you two indicators the over all direction of the MKT and during a pull back it will yield a binary score showing if the MKT is slowing down
The trigger can be a five min pivot
This Code will bring metastock to its knees and is more to the point of my goals to make some things out of metastock to be pushed back in but this is a free site for the development of Ideas and I am going to be forth right about my thoughts and delopement for the Benfit of all
Thanks Keltner