Kevin_in_GA 4,599 posts msg #128157 - Ignore Kevin_in_GA |
4/26/2016 1:53:36 PM
Another request - similar to the custom linear regression indicators would it be possible to get custom Bollinger bands for user-defined variables? While this can be done using multiple lines of code, it would be much easier if it could be coded into an indicator.
Example -
set{ratio, ind(IWM,close) / ind(SPY,close)}
now I want to look at the currently offered Bollinger Band Indicators for this - maybe something like
CUBB(ratio, days, #sd) - Custom Upper Bollinger Band
CLBB(ratio, days, #sd) - Custom Lower Bollinger Band
CBBOsc(ratio, days, #sd) - Custom Bollinger Band Oscillator
CBBWidth(ratio, days, #sd) - Custom Bollinger Band width
where ratio can be any previously defined user variable.
Please let me know if this can be added.
Kevin
|
Kevin_in_GA 4,599 posts msg #128214 - Ignore Kevin_in_GA |
4/28/2016 8:11:10 PM
Or maybe just modify the existing BB code to accept inputs other than the default close?
Now it would be
draw Bollinger Bands(close, 20, 2) for normal plot on price
or
draw Bollinger Bands(ratio, 20,2) on plot ratio
or
ratio above Upper Bollinger Band(ratio, 20,2)
That would be very helpful in filter development.
Kevin
|
Kevin_in_GA 4,599 posts msg #128368 - Ignore Kevin_in_GA |
5/7/2016 10:36:41 AM
Any response to this request?
|
stockfetcher 980 posts msg #128369 |
5/7/2016 10:41:07 AM
We apologize for not getting back to you sooner on this.
It should not be a problem adding the custom Bollinger Band functions you mention. We will be looking into this early next week and will post any updates here.
Thank you,
StockFetcher Support
|
Mactheriverrat 3,153 posts msg #128371 - Ignore Mactheriverrat |
5/7/2016 11:31:28 AM
also maybe look into the color picker on charts if one wants to draw a trend line for resistance in one color and support in another.
|
stockfetcher 980 posts msg #128407 |
5/11/2016 12:57:40 PM
We have added the 4 new custom measures mentioned. Below are a few examples:
Custom Upper Bollinger Band (CUBB)
Custom Lower Bollinger Band (CLBB)
Custom Bollinger Band Oscillator(CBBOsc)
Custom Bollinger Band Width(CBBWidth)
|
Mactheriverrat 3,153 posts msg #128414 - Ignore Mactheriverrat |
5/11/2016 5:32:50 PM
Draw EMA(13)
where's price to the EMA(13) line
The trend
Just saying
|