In this chapter we are going to discuss how to reference data which is not defined by current chart settings. We actually started doing this in chapter 11 where we used secondary aggregation period which overrides timeframe specified in chart settings.
Let's start with referencing fundamental data with a different price type. We hope that you've carefully read our reference dealing with fundamental functions, e.g., high , low , close , etc. In those articles you might have seen that the last argument for each fundamental function is priceType . This argument specifies which value of the fundamental function is needed: LAST, ASK, BID, or MARK. By default, this price type coincides with the one specified by chart settings. Here is how we could change that:
plot ask = close(priceType = "ASK");
plot bid = close(priceType = "BID");
On the "MARK" price type chart for a Forex symbol, this code will plot ask and bid plots. Just like it was explained in chapter 9, we only change the default value of argument priceType while keeping the other two ( symbol and period ) so that we put the 'equals' sign and state that we need ASK and BID price types for the first and second Close price plots, respectively. Note also that for non-Forex symbols, the last three are only supported on intraday charts with time interval not greater than 15 days.
As it was implied before, you can also change the symbol for some fundamental function in your script:
plot spread = close - close("GOOG");
This will plot the difference between the Close price of your current symbol and that of Google. Note how we did not use the full notation for the reference ( symbol = "GOOG" ) as we did for priceType . This is because symbol is the first argument for close (and any other fundamental functions) so that thinkScript® automatically decides to use the string "GOOG" as the value for it.
The last thing we are going to discuss here is referencing pre-defined studies. This is a convenient way to use values of more than 200 built-in studies in your script without reconstructing them.
In order to use default values of the study, type command reference :
plot MyMACD = reference MACDHistogram;
This script will add the plot of MACD Histogram which means that you are able incorporate this plot in your own study, e.g.,
plot MyMACD = reference MACDHistogram;
plot diff = Average(close, 5) – Average(close, 20);
Now your script displays MACD Histogram plot and difference between two averages.
You can also reference a study with parameters different from default ones:
plot SMA = SimpleMovingAvg(volume, 20);
This code will plot the 20 period SMA of volume. Note that in this case, you need to specify all the parameters that the study has; these should be separated with comma.
Currently users are only able to reference the built-in studies, however, there is a workaround for integrating their own scripts into new ones. This can be done using command script :
script avg input length = 10;
plot SMA = Average(close, length);
plot EMA = ExpAverage(close, length);
>
declare lower;
plot SMAOsc = avg(10) - avg(20);
plot EMAOsc = avg(10).EMA - avg(20).EMA;
The script will plot two moving average oscillators on the lower subgraph. Here is what we did: we had the script command introduce a study called avg which has two plots, SMA and EMA which happen to be simple and exponential moving averages of the Close price with variable length (we had the length input for this purpose). After that, we declared that we needed the lower subgraph and created two plots: SMAOsc and EMAOsc . For the latter, we called the newly created study avg , specified 10 and 20 in brackets in order to use these as lengths for EMA plot which was also specified after the dot in the notation:
plot EMAOsc = avg(10).EMA - avg(20).EMA;
For the SMAOsc plot, we did not state that we needed SMA from avg as it was the first plot in that study, thus it is referenced by default and there is no need to specifically call it like we did for EMA .
In the next chapter we will learn more about string concatenation as sometimes output demands compound string values.
Chapter 12. Past/Future Offset and Prefetch Chapter 14. Concatenating StringsThe information here is for general informational purposes only and should not be considered an individualized recommendation or personalized investment advice. The type of securities and investment strategies mentioned may not be suitable for everyone. Each investor needs to review a security transaction for his or her own particular situation.
Market volatility, volume and system availability may delay account access and trade executions.
Investing involves risk including loss of principal. Past performance of a security or strategy is no guarantee of future results or investing success.
Trading stocks, options, futures and forex involves speculation, and the risk of loss can be substantial. Clients must consider all relevant risk factors, including their own personal financial situation, before trading. Trading foreign exchange on margin carries a high level of risk, as well as its own unique risk factors.
Options carry a high level of risk and are not suitable for all investors. Certain requirements must be met to trade options through Schwab. Please read the options disclosure document titled "Characteristics and Risks of Standardized Options." Supporting documentation for any claims or statistical information is available upon request.
Multiple leg options strategies will involve multiple commissions.
Forex trading involves leverage, carries a high level of risk and is not suitable for all investors. Please read the NFA booklet Trading Forex: What Investors Need to Know prior to trading forex products.
Commodity interests and cash in futures accounts are not protected by SIPC. Futures trading involves a high level of risk and is not suitable for all investors. Certain requirements must be met to trade futures. Please read Risk Disclosure Statement for Futures and Options before considering any futures transactions.
Access to real-time market data is conditioned on acceptance of the exchange agreements. Professional access differs and subscription fees may apply.
Futures, futures options, and forex trading services provided by Charles Schwab Futures & Forex LLC. Trading privileges subject to review and approval. Not all clients will qualify.
Charles Schwab Futures and Forex LLC, a CFTC-registered Futures Commission Merchant and NFA Forex Dealer Member. Charles Schwab Futures and Forex LLC is a subsidiary of The Charles Schwab Corporation.
This site is designed for U.S. residents. Non-U.S. residents are subject to country-specific restrictions. Learn more about our services for non-U.S. residents.
© 2023 Charles Schwab & Co., Inc. All rights reserved. Member SIPC.