1 DAILY CLOSE VS HIGH AND LOW WAVE | if((C-L)/(H-L),>,.66 ,1, if((C-L)/(H-L),<,.38,-1,0)) |
2 PRICE OSCILLATOR WAVE | if(ref(oscp(3,15,S,%),-1),<,0,1,0) |
3 VOLUME OSCILLATOR WAVE | if(oscv(1,50,S,%),>,50,1,0) |
4 WEEKLY PRICE OSCILLATOR WAVE | if(fml(#17),>,ref(fml(#17),-1),1, if(fml(#17),<,ref(fml(#17),-1),-1,0)) |
5 VOLATILITY WAVE | if(ref(fml(#27),-1),<,90,1,0) |
6 LONG BINARY WAVE | fml(#1) + fml(#2) + fml(#3) + fml(#9) |
7 STOCHASTIC WAVE - LONG | if(ref(stoch(14,3),-1),=,llv(stoch(14,3),3),2, if(stoch(14,3),=,llv(stoch(14,3),3),1,0)) |
8 STOCHASTIC WAVE - SHORT | if(ref(stoch(14,3),-1),=,hhv(stoch(14,3),3),2, if(stoch(14,3),=,hhv(stoch(14,3),3),1,0)) |
9 VOLATILITY DIFFERENCE WAVE | if(fml(#11),>=,1.00,1,0) |
10 LONG BINARY II | fml(#1) + fml(#3) + fml(#9) + fml(#24) |
11 VOLATILITY DIFFERENCE | mov(H-L,1,S)/mov(H-L,20,S) |
12 HI LOW WAVE - DAILY | if(H,>,ref(hhv(H,100),-1),1,if(L,<,ref(llv(L,100),-1),-1,0)) |
13 WEEKLY HIGH LOW WAVE | if(H,>,ref(hhv(H,40),-1),1, if(L,<,ref(llv(L,40),-1), -1,0)) |
14 PERCENT ABOVE\BELOW MOVING AVG | (oscp(1,30,E,%)) |
15 WEEKLY PRICE OSCILLATOR | mov(oscp(10,20,S,%),10,S) |
16 MACD WAVE MACD/trigger Binary Wave | if(macd(), >, mov(macd(),9,E), {bullish} +1, {bearish} -1) |
17 WEEKLY OSC SEGMENT | mov(oscp(43,86,S,%),43,S) |
18 HISTORICAL VOLATILITY | (std(log(C / ref(C,-1)),10)*sqr(365)) /(std(log(C / ref(C,-1)),50)*sqr(365)) |
19 RELATIVE STRENGTH | C/P |
20 CLOSE REL TO HIGH LOW | (C-L)/(H-L) |
21 GAP IDENTIFICATION | if(L,>,ref(H,-1),1, if(H,<,ref(L,-1),-1,0)) |
22 AVG VOLUME | mov(V,50,S) |
23 MOVE WAVE 20-unit m.a. Binary Wave | if(C, >, mov(C,20,E), {then bullish} +1, {else bearish} -1) |
24 STOCHASTIC VALUE WAVE | if(ref(stoch(14,3),-1),<,65,1, if(stoch(14,3),<,65,1,0)) |
25 ROC WAVE 12-ROC price Binary Wave | if(roc(C,12,%), >, 0, {then bullish} +1, {else bearish} -1) |
26 STOCH WAVE 5- Stochastic Binary Wave | if(stoch(5,3), >, 50, {then bullish} +1, {else bearish} -1) |
27 ATR RATIO | atr(10)/atr(50)/100 |
28 BINARY WAVE Composite Wave of above | fml("MACD Wave") + fml("MOVE Wave") + fml("ROC Wave")+ fml("STOCH Wave") |
29 WEEKLY OPEN CLOSE WAVE | if(C,>,O,1,if(C,<,O,-1,0)) |
30 SHORT BINARY WAVE | fml(#31) + fml(#32) + fml(#33) |
31 SHORT OPEN CLOSE WAVE | if((C-L)/(H-L),<,.38,1,0) |
32 SHORT PRICE OSCILLATOR WAVE | if(ref(oscp(3,15,S,%),-1),>,0,1,0) |
33 SHORT VOLUME WAVE | if(oscv(1,50,S,%),>,0, if(V,>,ref(V,-1),1,0),0) |
34 O.B.V. Good example of if() func | cum( if( C, >, ref(C,-1), +V, if( C, <, ref(C,-1), -V, 0) )) |
35 SINE WAVE 5-unit standing sine wave | sin( cum(5) ) |
36 STOCHASTIC Example of hhv() function | ( sum( C - llv(L,5), 3 ) / sum( hhv(H,5) - llv(L,5), 3) ) * 100 |
37 Median price | (hhv(H,10)-C)-(C-llv(L,10))/(hhv(H,10)-llv(L,10)) |
38 Future MACD---Dr. Trieber | (C-(( 11.607*(mov(C,26,E)))-(10.607*(mov(C,12,E))) -(12.536*(mov(macd(),9,E))))) |
39 Fraction (32nd's) | int(C)+((frac(C)/0.03125)/100) |
40 Summation Noise Indicator (Adam White) | (sum(abs(C-ref(C,-1)),14)-sum(abs(mov(C,10,S)-ref(mov(C,10,S),-1)),14))/
sum(abs(C-ref(C,-1)),14) |
41 Chaikin Money Flow | sum(((((C-L)-(H-C))/(H-L))*V),21)/sum(V,21) |
42 Linear Regression | ((15*(sum(cum(1)*C,10))-(sum(cum(1),10)*(sum(C,10))))
/((10*sum(pwr(cum(1),2 ),10))-pwr(sum(cum(1),2),10)) -pwr(sum(cum(1),10),2)) |
43 Smoothed Tick Momemtum Line-TASC | mov(roc(cum(if(C,>,ref(mov(C,10,E),-1),+1,
if(C,<,ref(mov(C,10,E),-1),-1,0))),5,$),5,E) |
44 Bull Power (for Elderray) | H-mov(C,13,E) |
45 Bear Power (for Elderray) | L-mov(C,13,E) |
46 13-Period Moving Average (for Elderray) | mov(C,13,E) |
47 RSI Binary Wave (using 30/70 xover) | if(rsi(10),>,30,if(ref(rsi(10),-1),<,30,+1,if(rsi(10),<,70,if(ref(rsi(10),- 1),>,70,-1,0),0)),0) |
48 Trendscore...Tushar Chande (TASC) | if(C,>=,ref(C,-11),1,-1)+if(C,>=,ref(C,-12),1,-1)+if(C,>=,ref(C,-13),1,-1)+
if(C,>=,ref(C,-14),1,-1)+if(C,>=,ref(C,-15),1,-1)+if(C,>=,ref(C,-16),1,-1)+ if(C,>=,ref(C,-17),1,-1)+if(C,>=,ref(C,-18),1,-1)+if(C,>=,ref(C,-19),1,-1)+ if(C,>=,ref(C,-20),1,-1) |
49 KST-Martin Pring (One formula) | (mov(roc(C,10,%),10,S))+(2*(mov(roc(C,15,%),10,S)))+
(3*(mov(roc(C,20,%),10,S)))+(4*(mov(roc(C,30,%),15,S)))/10 |
50 Dual Oscillator B-Wave +1 buy, -1 sell | if(fml("dual osc 1"),>,fml("dual
osc 2"),if(ref(fml("dual osc 1"),-1),<,
ref(fml("dual osc 2"),-1),+1,if((fml("dual osc 1")),<,fml("dual osc 2"), if(ref(fml("dual osc 1"),-1),>,ref(fml("dual osc 2"),-1),-1,0),0)),0) |
51 Dual Osc 1 | mov(C,2,S)-mov(C,10,S) |
52 Dual Osc 2 | mov((H+L+C)/3,5,S)-mov((H+L+C)/3,20,S) |
53 R Squared | pwr(corr(cum(1),C,5,0),2) |
54 Slope of Linear Regression Line | ((5*(sum(cum(1)*C,5)))-(sum(cum(1),5)*(sum(C,5))))/
((5*sum(pwr(cum(1),2),5))-pwr(sum(cum(1),5),2)) |
55 RWI for today's high | (H-ref(L,-16))/(mov((H-L),16,S)*sqr(16)) |
56 RWI for today's low | (ref(H,-16)-L)/(mov((H-L),16,S)*sqr(16)) |
57 Momemtum | roc(mov(C,10,E),10,%) |
58 Volume Binary Wave | if(V,>,ref(mov(V,20,E),1),1,if(V,<,ref(mov(V,10,E),1),-1,0)) |
59 MACD w/SAR | if(macd(),>,mov(macd(),9,E),{macd
is above trigger}if(sar(.02,.2),
<,C,{buy long}+2,{stop shorts}+1),{macd < trigger}if(sar(.02,.2),>, C,{sell short}-2, {stop longs}-1)) |
60 Oscillating OBV | mov(obv(),20,E)-obv() |
61 Overreaction Index | if(ref(std(C,3),-3),>,4,+1,0)+if(C,<,(sar(.015,.15)),-1,+1) |
62 Modified MACD | tsf(C,12)-tsf(C,26) |
63 RVI w/simple moving average (TASC) | 100*mov(if(C,>,ref(C,-1),std(C,10),0),14,S)/(mov(if(C,>,ref(C,-1),
std(C,10),0),14,S)+mov(if(C,<,ref(C,-1),std(C,10),0),14,S)) |
64 Upper Bollinger Band | mov(C,20,S)+(2*(std(C,20))) |
65 Lower Bollinger Band | mov(C,20,S)-(2*(std(C,20))) |
66 Middle Band | mov(C,20,S) |
67 %B (TASC) | (C-(mov(C,20,S)-(2*(std(C,20)))))/(mov(C,20,S)+(2*(std(C,20)))-
mov(C,20,S)-(2*(std(C,20)))) |
68 Band Width (TASC) | (mov(C,20,S)+(2*(std(C,20))))-(mov(C,20,S)-(2*(std(C,20))))/mov(C,20,S) |
69 Volume % above/below 10 day MA | (V-mov(V,10,S))/mov(V,10,S) |
70 # of STD's of volume | (V-mov(V,20,S))/std(V,20) |
71 Morris' RSI w/volume (TASC) | 100-(100/(1+(mov(if(roc(C,1,$),>,0,roc(C,1,$)*V,0),14,S)/
mov(if(roc(C,1,$), <,0,-roc(C,1,$)*V,0),14,S)))) |
72 Custom A/D Oscillator | cum(if(C,>,ref(C,-2),1,if(C,<,ref(C,-2),-1,0))) |
73 Empty Candlestick | if(C,>,o{then empty},+1,0) |
74 Filled Candlestick | if(C,<,o{then filled},+1,0) |
75 Doji | if(C,=,o{then doji},+1,0) |
76 Bearish engulfing lines | if(fml(#28),=,+1,if(ref(fml(#27),-1),=,+1,if(C,<=,ref(O,-1),if(O,>=,
ref(C,-1),-1,0),0),0),0) |
77 Bullish engulfing lines | if(fml(#27),=,+1,if(ref(fml(#28),-1),=,+1,if(C,>=,ref(O,-1),if(O,<=,
ref(C,-1),+1,0),0),0),0) |
78 Engulfing Line Binary wave | fml(#30)+fml(#31) |
79 Largest negative change in close | llv(roc(C,1,$),40) |
80 Choppiness Index (TASC) | ((log(sum(atr(1),14)/(hhv(if(H,>=,ref(C,-1),H,ref(C,-1)),14)-llv(if(L,<=,
ref(C,-1),L,ref(C,-1)),14)))/log(10))/(log(14)/log(10)))*100 |