|
Number of reviews
Click to add a review
Average rate
Click to rate this item
Number of times this object was downloaded
Number of rates the current object received
Report an object
if you can't run it for example or if it contains errors
Click to report this object
This item calculates the SCTR (Stock Charts Technical Ranking). Please see the link for description. https://school.stockcharts.com/doku.php?id=technical_indicators:sctr
cFunctions.SetForwardAndBackwardBars(200, 0);
String str = "EMA200_ = ((Close - ema(200))/ema(200)) * 30;" + ...
No notes
|
Indicator
Medium
|
| |
By default, users are unable to take advantage of global variables inside of charts and other features. This function reads the specified global variable and returns its value as a string (not a number). If the global variable does not exist, this function will return a blank string.
By itself, GetVariable...
No notes
|
Indicator
Medium
|
| |
This function loops through each trading bar and update any zero value with Nan
The function could be useful in many situation. Here is how it is used in this how-to lesson:
No notes
|
Indicator
Basic
|
| |
This function calculates the high or low of a trading session within a specific period/interval. You can define a start and end time, whether to get the high and low and the function returns the last high or low that occurred during that time frame.
Example of usage:
// Calculates the high...
No notes
|
Indicator
Medium
|
| |
Convert a text/string to a numeric value.
For example, if you have a numeric data stored in a text field such as Name1, Name2... and you want to use this in a QuantShare formula, you can use this function to do so:
a = ToNumeric(Name1());
...
No notes
|
Indicator
Medium
|
| |
Moving Average Derivative
This Indicator shows the value of the slope (Derivative) of the Moving Average with X days.
The slope is calculated in % increase.
A negative slope means the Moving Average is decreasing, so a bearish signal to the the stock.
...
No notes
|
Indicator
Medium
|
| |
Alma is a moving average developed by Arnaud Legoux & Dimitris Kouzis-Loukas. It uses curve of the normal distribution (Gauss) which can be updated using the offset parameter.
This technical indicator has four paramters:
Series: Timeseries to use for the moving average
Window: Lookback period
...
No notes
|
Indicator
Medium
|
| |
This function returns the number of calendar days between two dates.
For example, if you want to know the number of calendar days (not trading days) between the current bar and the previous bar, just type:
a = daysBetweendates(date(), RefString(date(), 1));
plot(a, "");
...
No notes
|
Indicator
Basic
|
| |
This is a modified version of the "GetDataString" function which gets a string/text from a custom database field.
The modified version allows you to get the last (non empty) string on any given trading bar.
As an example, let us say that you have a database whose name is "db" and a...
No notes
|
Indicator
Medium
|
| |
When added to a chart, this function generates a beep each time a new bar is created.
This function could be particularly useful when streaming real time data in a chart with a custom periodicity (Tickers per Bar, Range Bar.). It allows you to be quickly notified each time a new...
No notes
|
Indicator
Medium
|
| |
0 1 2 3 4 5 6 7 8 9 10 ... - Next
|