StockFetcher Forums · General Discussion · vortex indicator<< 1 2 3 >>Post Follow-up
byebyemoney
31 posts
msg #139790
Ignore byebyemoney
12/4/2017 5:31:21 PM

will the vortex indicator be available as an indicator on stockfetcher?

best,
bbm

Kevin_in_GA
4,599 posts
msg #139794
Ignore Kevin_in_GA
12/4/2017 7:32:23 PM

It is available for Stratasearch:

http://www.stratasearch.com/forum/viewtopic.php?f=8&t=749&p=3457&hilit=vortex#p3457

link to free download of the fully functional software is here:

http://www.stratasearch.com/download.html

davesaint86
725 posts
msg #139811
Ignore davesaint86
modified
12/5/2017 8:30:43 AM


Fetcher[
/* Indicators */


/* Custom 8 period RSI of a Price Oscillator using Tillson Adaptive MAs */

set{myOSC1, T3(5,0.618) - T3(8,0.618)}
set{myT3RSI, CRSI(myOSC1, 8)}

set{myT3RSI_trend, CEMA(myT3RSI, 8)}


/* 8 period Vortex Trend Indicator */

set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm8, sum(plus_vm, 8)}
set{minus_vm8, sum(minus_vm, 8)}

set{atr1, average true range(1)}
set{tr8, sum(atr1, 8)}

set{vortex_bull, plus_vm8 / tr8}
set{vortex_bear, minus_vm8 / tr8}


/* ------------------------------ */


symlist(SPY,QQQ,DIA)


/* ------------------------------ */


/* Plots */

draw indicator T3(5,0.618)
draw indicator T3(8,0.618)
draw indicator EMA(55)

draw indicator myT3RSI
draw indicator myT3RSI line at 80
draw indicator myT3RSI line at 20
draw indicator myT3RSI line at 50
draw indicator myT3RSI_trend on plot myT3RSI

draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull
draw indicator vortex_bull line at 1.00

chart-time is 4 Months

chart-scale is logarithmic
]


]

byebyemoney
31 posts
msg #139940
Ignore byebyemoney
12/8/2017 2:22:08 PM

wow, well done, thank you

davesaint86
725 posts
msg #139941
Ignore davesaint86
12/8/2017 2:47:16 PM

It wasn't my filter. I remember seeing some vortex filters out there in SF land, so I searched on Vortex and found one.

kia007
8 posts
msg #153832
Ignore kia007
8/31/2020 10:14:33 AM

how could you apply this for weekly data?


Cheese
1,374 posts
msg #153834
Ignore Cheese
8/31/2020 11:04:37 AM

maybe something like this

Fetcher[


display weekly




/*
https://www.stockfetcher.com/forums/General-Discussion/SERIOUSLY-Why-Trade-Individual-Stocks/117748/-1/118098
alf44 2/6/2014 2:48:53 PM

https://www.stockfetcher.com/forums/General-Discussion/vortex-indicator/139790
vortex indicator
davesaint86 modified 12/5/2017 8:30:43 AM
*/





/* Indicators */


/* Custom 8 period RSI of a Price Oscillator using Tillson Adaptive MAs */

set{myOSC1, T3(5,0.618) - T3(8,0.618)}
set{myT3RSI, CRSI(myOSC1, 8)}

set{myT3RSI_trend, CEMA(myT3RSI, 8)}


/* 8 period Vortex Trend Indicator */

set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm8, sum(plus_vm, 8)}
set{minus_vm8, sum(minus_vm, 8)}

set{atr1, average true range(1)}
set{tr8, sum(atr1, 8)}

set{vortex_bull, plus_vm8 / tr8}
set{vortex_bear, minus_vm8 / tr8}


/* ------------------------------ */


symlist(SPY,QQQ,DIA)


/* ------------------------------ */


/* Plots */

draw indicator T3(5,0.618)
draw indicator T3(8,0.618)
draw indicator EMA(55)

draw indicator myT3RSI
draw indicator myT3RSI line at 80
draw indicator myT3RSI line at 20
draw indicator myT3RSI line at 50
draw indicator myT3RSI_trend on plot myT3RSI

draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull
draw indicator vortex_bull line at 1.00

chart-time is 4 Months

chart-scale is logarithmic
]



kia007
8 posts
msg #153911
Ignore kia007
9/4/2020 1:14:30 AM

Thanks Cheese! Exactly what I was looking for.

kia007
8 posts
msg #154774
Ignore kia007
11/30/2020 1:31:52 PM

Hi,

I like to only filter out those stocks in the weekend that had a bullish cross over of the vortex on a weekly chart. I am using this filter but I get a lot of stocks with a cross over of the vortex long before the recent week.

/* 14 period Vortex Trend Indicator */

set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm14, sum(plus_vm, 14)}
set{minus_vm14, sum(minus_vm, 14)}

set{atr1, average true range(1)}
set{tr14, sum(atr1, 14)}

set{vortex_bull, plus_vm14 / tr14}
set{vortex_bear, minus_vm14 / tr14}

and weekly vortex_bear crossed weekly vortex_bull

and chart-display is weekly

/* Plots */

draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull

chart-time is 4 Months

chart-scale is logarithmic


snappyfrog
651 posts
msg #154777
Ignore snappyfrog
11/30/2020 7:05:27 PM

Making it clickable

Fetcher[

/* 14 period Vortex Trend Indicator */

set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm14, sum(plus_vm, 14)}
set{minus_vm14, sum(minus_vm, 14)}

set{atr1, average true range(1)}
set{tr14, sum(atr1, 14)}

set{vortex_bull, plus_vm14 / tr14}
set{vortex_bear, minus_vm14 / tr14}

and weekly vortex_bear crossed weekly vortex_bull

and chart-display is weekly

/* Plots */

draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull

chart-time is 4 Months

chart-scale is logarithmic
]



StockFetcher Forums · General Discussion · vortex indicator<< 1 2 3 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.