StockFetcher Forums · Filter Exchange · Mac's GUPPY Filter<< >>Post Follow-up
karennma
8,057 posts
msg #147409
Ignore karennma
modified
4/16/2019 11:52:19 AM

Has anyone written the GUPPY filter for TC2K or ThinkorSwim?
If so, would you mind sharing?
:>)
(I know what what you're thinking ... but don't say it. LOL!)

johnpaulca
12,036 posts
msg #147419
Ignore johnpaulca
modified
4/16/2019 4:25:53 PM

You can start with this, tweak it to your liking....TOS


plot Data = close;

declare upper;

input price = close;
input displace = 0;

def length3ema = 3;
def length15ema = 15;
def length30ema = 30;
def length60ema = 60;

plot avgexp3 = ExpAverage(data = price[-displace], length = length3ema);
avgexp3.SetDefaultColor(Color.Gray);
plot avgexp15 = ExpAverage(data = price[-displace], length = length15ema);
avgexp15.SetDefaultColor(Color.Gray);

AddCloud(avgexp3, avgexp15);

plot avgexp30 = ExpAverage(data = price[-displace], length = length30ema);
avgexp30.SetDefaultColor(Color.Gray);
plot avgexp60 = ExpAverage(data = price[-displace], length = length60ema);
avgexp60.SetDefaultColor(Color.Gray);

AddCloud(avgexp30, avgexp60);

StockFetcher Forums · Filter Exchange · Mac's GUPPY Filter<< >>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.