DeusMecanicus
Active member
This thread might be worth a revisit for a similar indicator.
https://usethinkscript.com/threads/vix-tool-idea.1633/#post-17446
I added a quick pricecolor view to the bottom of @amalia post.
Get long after some sustained green or go short/cash if showing red.
https://usethinkscript.com/threads/vix-tool-idea.1633/#post-17446
I added a quick pricecolor view to the bottom of @amalia post.
Get long after some sustained green or go short/cash if showing red.
Code:
assignpricecolor( If V<m1 && m1<m2 then color.green else If V<=m1 && V<m2 then color.yellow else if V>m1 && V<m2 then color.orange else if V>m1 && V>m2 then color.red else color.gray);
Last edited by a moderator: