petergluis
Active member
I did not add arrows. You can improve it.does it show arrows?
I did not add arrows. You can improve it.does it show arrows?
They are both in ToS, just without source code.Hi Mashume,
Do you know if the FW_MMG or FW_FisherTransformer indicators can be found anywhere? These are the two that are not included on the FW website.
Best,
Mitch
I can't find the link for this indicator.Just remember that you need to reference the FW_DPO_MOBO for every plot you want to use... I have my own custom versions and have posted my short version below... Note that my settings differ from the original release...
Ruby:#My_FW_DPO_MOBO #Based on TOS FW_DPO_MOBO #Modified for personal use by rad14733 declare lower; input price = HL2; input colorNormLength = 3; input dpoLength = 13; input moboDisplace = 0; input moboLength = 13; input numDevDn = -1.0; input numDevUp = 1.0; input coloredMobo = Yes; input coloredFill = Yes; input breakArrows = Yes; input moboShowMid = Yes; #plot DPO = Double.NaN; plot DPO = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).DPO; #DPO.DefineColor("UpTrend", Color.LIME); #DPO.DefineColor("DnTrend", Color.MAGENTA); DPO.SetPaintingStrategy(PaintingStrategy.LINE); DPO.SetLineWeight(2); DPO.AssignValueColor(Color.YELLOW); DPO.HideBubble(); DPO.HideTitle(); #plot MidlineP = Double.NaN; plot MidlineP = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).MidlineP; MidLineP.SetPaintingStrategy(PaintingStrategy.LINE); MidLineP.SetLineWeight(2); MidlineP.AssignValueColor(if MidlineP > MidlineP[1] then Color.GREEN else Color.RED); MidlineP.HideBubble(); MidlineP.HideTitle(); #plot UpperBandP = Double.NaN; plot UpperBandP = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).UpperBandP; UpperBandP.SetDefaultColor(Color.WHITE); UpperBandP.SetLineWeight(1); #plot LowerBandP = Double.NaN; plot LowerBandP = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).LowerBandP; LowerBandP.SetDefaultColor(Color.WHITE); LowerBandP.SetLineWeight(1); #plot Zeroline = Double.NaN; plot Zeroline = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).Zeroline; Zeroline.SetStyle(Curve.MEDIUM_DASH); Zeroline.SetDefaultColor(Color.ORANGE); Zeroline.SetLineWeight(2); #plot BreakOutArrow = Double.NaN; plot BreakOutArrow = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).BreakOutArrow; #plot BreakDownArrow = Double.NaN; plot BreakDownArrow = FW_DPO_MOBO(price, colorNormLength, dpoLength, moboDisplace, moboLength, numDevDn, numDevUp, coloredMobo, coloredFill, breakArrows, moboShowMid).BreakDownArrow; AddCloud(UpperBandP, LowerBandP, Color.MAGENTA, Color.MAGENTA);
The script that you included in your post is @rad14733's indicator.I can't find the link for this indicator.
This is very interesting @MerryDay , and @rad14733I use the one here from @rad14733: https://usethinkscript.com/threads/fw_dpo_mobo-script.4771/#post-44180. He does use different lengths.
This indicator appears on most of my charts. I buy dips and then look for reversals.
I am not a fan of arrows, especially w/ oscillators, especially w/ this particular script. For me, it is more about how the oscillator is lining up with your other three non-collinear indicators on your three timeframes.
How do I convert an AddCloud Statement into a variable TOS?
AddCloud(if DPO > lower then upper else nan,
if DPO > lower then lower else nan, Color.Green, Color.Current);
def variable = DPO > Lower ;
plot trigger = if DPO crosses above Lower then Lower else double.NaN;
trigger.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
trigger.SetDefaultColor(color.yellow) ;
trigger.SetLineWeight(3);[
#https://www.tradingview.com/script/s2yv2eub-Mobo-Bands/
declare lower;
def price = hl2;
def colorNormLength = 3;
def dpoLength = 13;
def moboDisplace = 0;
def moboLength = 10;
def numDevDn = -0.8;
def numDevUp = 0.8;
script nz {
input data = 0;
def ret_val = if IsNaN(data) then 0 else data;
plot return = ret_val;
}
def coloredMobo = yes;
def coloredFill = yes;
def breakArrows = yes;
def moboShowMid = yes;
#def DPO = price - Average(price[DPO_length / 2 + 1], DPO_length);
def xsma = Average(price[dpoLength / 2 + 1], dpoLength);
#def xsma = sma(price, dpoLength);
def DPO = price - xsma;
def Midline = Average(DPO, moboLength);
def sDev = StDev(DPO, moboLength);
def Lower = Midline + numDevDn * sDev;
def Upper = Midline + numDevUp * sDev;
plot line_dpo = DPO;
line_dpo.AssignValueColor(if line_dpo> line_dpo[1] then Color.cyan else Color.red);
line_dpo.SetLineWeight(5);
plot Line_mid = Midline;
Line_mid.AssignValueColor(if MidLine < dpo then Color.green else Color.magenta);
Line_mid.SetLineWeight(3);
AddCloud(if DPO > Lower then Upper else double.NaN,
if DPO > Lower then Lower else double.NaN, Color.Green, Color.Current);
plot trigger = if DPO crosses above Lower then Lower else double.NaN;
trigger.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
trigger.SetDefaultColor(color.yellow) ;
trigger.SetLineWeight(3);
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
Q | SP indicator For ThinkOrSwim | Custom | 2 | |
J | Godmode 4.0.2 [Supply/Demand] For ThinkOrSwim | Custom | 1 | |
M | Order Size Calculator For ThinkOrSwim | Custom | 0 | |
C | EMA 9/21 with Target Price [SS] For ThinkOrSwim | Custom | 1 | |
Zero-Lag MA Trend Levels [ChartPrime] for ThinkOrSwim | Custom | 0 |
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.