StockFetcher Forums · Filter Exchange · my hgi buy and sell arrows and ttm-squeeze and macd(2,3,1) indicator for tos>>90% winning<< >>Post Follow-up
optionplayer333
801 posts
msg #110618
Ignore optionplayer333
1/28/2013 1:22:10 PM

hgi arrows> i rarely lose when i use these 3 indicator together

declare upper;

input MALength = 5;

def DM = high - low;
def Trend = if hlc3 > hlc3[1] then 1 else -1;
rec CM = DM + if Trend == Trend[1] then CM[1] else DM[1];
rec VForce = if CM != 0 then Trend * 100 * volume * AbsValue(2 * DM / CM - 1) else VForce[1];
def KVOsc = ExpAverage(VForce, 34) - ExpAverage(VForce, 55);
def TriggerLine = Average(KVOsc, MALength);

plot crossingup = Crosses(KVOsc,TriggerLine, CrossingDirection.ABOVE);
crossingup.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
plot crossingdown = Crosses(KVOsc,TriggerLine, CrossingDirection.BELOW);
crossingdown.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
crossingdown.SetDefaultColor(color.YELLOW);
crossingup.SetDefaultColor(color.CYAN);


insert it in the new box

ttm-squeeze

insert into new box
# @new
# @reference
#
# TD Ameritrade IP Company, Inc. (c) 2009-2013
#
# Source code isn't available.

declare lower;

input price = CLOSE;
input length = 20;
input nK = 1.5;
input nBB = 2.0;
input alertLine = 1.0;

plot Histogram = Double.NaN;
plot VolComp = Double.NaN;




springhill
74 posts
msg #110623
Ignore springhill
1/28/2013 4:23:42 PM

OP333,
I tried your TOS code in a thinkscript. The upper declare works ok. Get a lot of nice blue and yellow arrows. How do you use the info you see.

Also, the Lower Declare

declare lower;

input price = CLOSE;
input length = 20;
input nK = 1.5;
input nBB = 2.0;
input alertLine = 1.0;

plot Histogram = Double.NaN;
plot VolComp = Double.NaN;

compiles and runs but does not show any info. Because the last two plots are Double NaN

Tell us more please...


StockFetcher Forums · Filter Exchange · my hgi buy and sell arrows and ttm-squeeze and macd(2,3,1) indicator for tos>>90% winning<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.