StockFetcher Forums · Filter Exchange · standard deviation of a custom indicator<< >>Post Follow-up
kisacik
7 posts
msg #51318
Ignore kisacik
4/25/2007 5:47:13 AM

I am trying to design a custom indicator and find the standard deviations of it from a moving average. For simplicity, I used the closing price instead of my custom indicator that I called "foo". The below example works, but is there a simpler way like StdDev(foo, 20, 1) to get the result quickly with less typing?

set {foo, close}
set {foo2, foo * foo}
set {ave, CMA(foo, 30)}
set {ave2, ave * ave}
set {cum_ave, 30 * ave}
set {cum_ave2, 30 * ave2}
set {cum_foo2, sum(foo2, 30)}
set {cum_cross, sum(foo, 30) * ave}
set {cum_2cross, 2 * cum_cross}
set {sum1, cum_ave2 + cum_foo2}
set {sum2, sum1 - cum_2cross}
set {dev2, sum2 / 30}
set {std_dev, sqrt(dev2)}

close is between 100 and 101
and draw std_dev
and draw standard deviation(30, 1)


kisacik
7 posts
msg #51319
Ignore kisacik
modified
4/25/2007 6:10:45 AM

The function cstddev(foo, 30) does this apparently, not in the documentation though, it is in the Q&A help pages. I am yet to find how to modify the smoothing parameter, by default it is 7. So, cstddev(foo, 30) is the same as standard deviation(foo, 30, 7). So...

and draw cstddev(foo, 30)

StockFetcher Forums · Filter Exchange · standard deviation of a custom indicator<< >>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.