NexusFi: Find Your Edge


Home Menu

 





Help with converting ToS script into Easylanguage (Volatility/STDeviation Indicators)


Discussion in EasyLanguage Programming

Updated
    1. trending_up 2,516 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
mhc217
Canada
 
Posts: 1 since Jan 2014
Thanks Given: 0
Thanks Received: 0

Hello guys, these are a few simple indicators that I use on ToS. Can anyone help me to convert it into easylanguage? thanks alot!

declare lower;
input length = 10;
input averageType = AverageType.SIMPLE;
def strat = close("VIX")/close("VXV");
plot MovAvg = MovingAverage(averageType,strat,length);
MovAvg.SetPaintingStrategy(PaintingStrategy.LINE);
MovAvg.AssignValueColor(if MovAvg < 0.92 then color.Green else color.RED);
alert(MovAvg > 0.92, "VIX/VXV ratio is over 0.92! Current value is" + MovAvg, alert.bar, Sound.Ring);

-----------------------------------------------------------------------------------

declare lower;
input length = 10;
input lookback = 15;
input averageType = AverageType.SIMPLE;
def ratioa = close("VIX") / close("VXV");
def MovAvga = MovingAverage(averageType, ratioa, length);
def ratiob = close("VIX")[lookback] / close("VXV")[lookback];
def MovAvgb = MovingAverage(averageType, ratiob, length);

plot direction = MovAvga / MovAvgb - 1;

direction.setpaintingStrategy(PaintingStrategy.HISTOGRAM);
direction.AssignValueColor(if direction < 0 then Color.GREEN else Color.RED);
# alert(MovAvg < 0.93, "VXV/VIX ratio is under! Current value is" + MovAvg, alert.bar, Sound.Ring);

---------------------------------------------------------------------------------------
declare lower;
input length = 21;
def closeLog = Log(close[1] / close[2]);
def SDev = stdev(closeLog, length)* Sqrt(length / (length – 1));
def m= SDev * close[1];
plot spike = (close[0] – close[1]) / m;
spike.setPaintingStrategy(PaintingStrategy.HISTOGRAM);
spike.AssignValueColor(if close > close[1] then Color.UPTICK else if close < close[1] then Color.DOWNTICK else GetColor(1));
def currentSpike = (AbsValue(close – close[1])) / m;
Alert(currentSpike >= 1.0, "Spike >= 1.0!", Alert.TICK, Sound.Chimes);


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
April 2026 Jobs Report: +115k vs +65k Expected
Traders Hideout
TradingView Deploys AI to Monitor SEC Filings in Real Ti …
TradingView
Netherlands & Germany Surge as World Cup Field Narro …
Prediction Markets & Event Contracts
Iran Forward Curve: June 30 at 56% vs June 15 at 28% -- …
Prediction Markets & Event Contracts
Orban at 29pct as Hungary Votes Tomorrow -- McIlroy Surg …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
197 thanks
Sober Journey With S&P
27 thanks
30 Sessions
20 thanks
BERN ALGOS algo trading journal
8 thanks
Volume Indicators
8 thanks




Last Updated on January 11, 2014


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts