Join useThinkScript to post your question to a community of 21,000+ developers and traders.
I know there is nothing wrong with it but I can't seem to open the script when I click the link. It takes me to another URL page. I have TOS platform open but it does nothing. when it routes me to the other page.. I'm stuck@Rosalyn I just checked the link, there is nothing wrong with it.
I do click on it and it says if I want to open it in Zulu Platform, if I say yes nothing happens...@Rosalyn scroll down a bit and you'll see a button that says "View in ThinkorSwim." Click on it.
Nothing opens, it keeps telling me if I want to open it on Xulu Platform or cancel request... Every time I try to open a link same issue...@Rosalyn A new ThinkorSwim window should be opened. Please double check by hovering to the ThinkorSwim icon on your taskbar.
Thank you! I figured it out how to do this before I saw this... Still weird I can't open the link by clicking the link... oh well guess I'll have to do it manually. thx again
Something may have changed since the last TOS release because it doesn't work like it used to for me either... You used to be able to click on the Zulu prompt and then when you clicked back into TOS you would get a popup but that no longer happens... Copying the link and opening the shared link, as posted above, seems to be the only way to import until the old Zulu functionality is restored...Thank you! I figured it out how to do this before I saw this... Still weird I can't open the link by clicking the link... oh well guess I'll have to do it manually. thx again
Hey Chewie. thx for sharing your futures grid but I can't see the timeframes at the bottom of each chart when i import it... ???Here is the chart. http://tos.mx/5Wd4oaR
How does this indicator work on a daily time frame for swing trading?
The lower indicator shows a standard deviation for each bar. When the bars cross the average line, that triggers the signal.@chewie76 I am trying to comprehend how the lower indicator works. Would you mind giving me a short explanation of the lower indicator, the plots (histogram, signal line, and levels) and what constitutes a directional arrow that shows in the upper indicator? I would greatly appreciate it. I find there is something here that could compliment my trading as I rely heavily on standard deviations and mean reversions. For the life of me, I cannot decipher this lower indicator beyond its oscillations.
input momZAvgLength = 13;
plot momZAvg = (avgZv - avgZv[momZAvgLength]);
momZAvg.assignValueColor(if momZAvg > momZAvg[1] then color.WHITE else color.DARK_ORANGE);
momZAvg.setPaintingStrategy(paintingStrategy.LINE);
momZAvg.setLineWeight(2);
momZAvg.HideBubble();
// ZScore Indicator
// Assembled by @chewie76 on UseThinkScript
// Modified for TradingView by egshih
// @version=4
study("Z-Score Indicator",overlay=true)
//Inputs
price = close
length = input(20)
ZavgLength = input(20)
//Initialize values
oneSD = stdev(price,length)
avgClose = sma(price,length)
ofoneSD = oneSD*price[1]
Zscorevalue = ((price-avgClose)/oneSD)
avgZv = sma(Zscorevalue,20)
//Compute and plot Z-Score
avgZscore = sma(Zscorevalue,ZavgLength)
Zscore = ((price-avgClose)/oneSD)
//Plot zero line and extreme bands
zero = 0
two = 2
one = 1
negone = -1
negtwo = -2
three = 3
negthree = -3
//Buy Conditions, currently set at 0.75
conditionbuy = crossover(Zscore,avgZscore) and avgZscore < -0.75
conditionsell = crossunder(Zscore,avgZscore)and avgZscore > 0.75
//Plot Buy and Sell Arrows
plotshape(conditionbuy, style=shape.arrowup, color=color.blue,location=location.belowbar, text="Buy ZScore")
plotshape(conditionsell, style=shape.arrowdown, color=color.orange,location=location.abovebar, text="Sell ZScore")
// ZScore Indicator
//Assembled by [USER=117]@chewie76[/USER] on UseThinkScript.com
//Link: https://usethinkscript.com/threads/z-score-upper-indicator-for-thinkorswim.3896/
//Modified for TradingView by egshih
//@version=4
study("Z-Score Indicator Lower",overlay=false)
//Inputs
price = close
length = input(20)
ZavgLength = input(20)
//Initialize values
oneSD = stdev(price,length)
avgClose = sma(price,length)
ofoneSD = oneSD*price[1]
Zscorevalue = ((price-avgClose)/oneSD)
avgZv = sma(Zscorevalue,20)
//Compute and plot Z-Score
avgZscore = sma(Zscorevalue,ZavgLength)
Zscore = ((price-avgClose)/oneSD)
//Plot ZScore
plot(avgZscore,title="AverageZScore",linewidth=1)
plot (Zscore, style=plot.style_histogram, color=Zscore>0?color.green:color.red)
//Plot zero line and extreme bands
zero = 0
two = 2
one = 1
negone = -1
negtwo = -2
three = 3
negthree = -3
plot(zero,title="0Line",color=color.yellow)
plot(two,title="2Line",color=color.red)
plot(one,title="1Line",color=color.orange)
plot(negone,title="-1Line",color=color.lime)
plot(negtwo,title="-2Line",color=color.green)
//Buy Conditions, currently set at 0.75
conditionbuy = crossover(Zscore,avgZscore) and avgZscore < -0.75
conditionsell = crossunder(Zscore,avgZscore)and avgZscore > 0.75
//Plot Buy and Sell Arrows
plotshape(conditionbuy, style=shape.arrowup, color=color.green,location=location.bottom, text="Buy")
plotshape(conditionsell, style=shape.arrowdown, color=color.red,location=location.top, text="Sell")
fillthree=hline(3)
filltwo=hline(2)
fillnegtwo=hline(-2)
fillnegthree=hline(-3)
//fill Cloud
fill(fillthree,filltwo,color=color.red)
fill(fillnegtwo,fillnegthree,color=color.green)
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.