Shooters_Gotta_Shoot
Member
Hey everyone,
I've been utilizing the FW_DPO_MOBO Indicator and I would like to code it into one of my strategies. The problem is that when you go to copy and paste the script to implement it into a strategy, the script says "Source code isn't available." The TTM_Squeeze Indicator has this same problem, but I've seen reiterations of the script to make it the same as the original indicator. I was wondering if anyone has the script for the FW_DPO_MOBO Indicator that is editable and able to be coded into a strategy. I know it is a combination of Bollinger Bands and the Detrended Price Oscillator, but the original indicator somehow scales the Bollinger Bands in a special way for the Detrended Price Oscillator to work better with it. I will post the code for the FW_DPO_MOBO so you can see what I am talking about.
Any help would be much appreciated!
I've been utilizing the FW_DPO_MOBO Indicator and I would like to code it into one of my strategies. The problem is that when you go to copy and paste the script to implement it into a strategy, the script says "Source code isn't available." The TTM_Squeeze Indicator has this same problem, but I've seen reiterations of the script to make it the same as the original indicator. I was wondering if anyone has the script for the FW_DPO_MOBO Indicator that is editable and able to be coded into a strategy. I know it is a combination of Bollinger Bands and the Detrended Price Oscillator, but the original indicator somehow scales the Bollinger Bands in a special way for the Detrended Price Oscillator to work better with it. I will post the code for the FW_DPO_MOBO so you can see what I am talking about.
Any help would be much appreciated!
Code:
#
# TD Ameritrade IP Company, Inc. (c) 2010-2020
#
# Source code isn't available.
declare lower;
input price = CLOSE;
input colorNormLength = 3;
input dpoLength = 14;
input moboDisplace = 0;
input moboLength = 10;
input numDevDn = -0.8;
input numDevUp = 0.8;
input coloredMobo = Yes;
input coloredFill = Yes;
input breakArrows = Yes;
input moboShowMid = No;
plot DPO = Double.NaN;
plot MidlineP = Double.NaN;
plot UpperBandP = Double.NaN;
plot LowerBandP = Double.NaN;
plot Zeroline = Double.NaN;
plot BreakOutArrow = Double.NaN;
plot BreakDownArrow = Double.NaN;