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
]
|
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
|
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 721 posts msg #154777 - Ignore snappyfrog |
11/30/2020 7:05:27 PM
Making it clickable
|