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,192 views
    2. thumb_up 0 thanks given
    3. group 1 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread

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

  #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?
What broker to use for trading palladium futures
Commodities
REcommedations for programming help
Sierra Chart
About a successful futures trader who didnt know anythin …
Psychology and Money Management
MC PL editor upgrade
MultiCharts
ZombieSqueeze
Platforms and Indicators
 




Last Updated on January 11, 2014


© 2024 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 - Privacy Policy - Downloads - Top
no new posts