All Data Points (Returns the full-length time series of up to 20 years of historical data)
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Time_Series={
2
meta:{
3
symbol:String,
4
last_refreshed:String,
5
output_size:String,
6
timezone:String,
7
},
8
data:[
9
{
10
date:Date,
11
open:Float,
12
high:Float,
13
low:Float,
14
close:Float,
15
volume:Float,
16
},
17
]
18
}
19
​
Copied!
JSON_Data (String)
Digital/Crypto Currencies
​
âš™
Settings
Digital Currency
Exchange Market
Time Period
​
📤
Outputs
1
Crypto_Data={
2
meta:{
3
digital_currency_code:String,
4
digital_currency_name:String,
5
market_code:String,
6
market_name:String,
7
last_refreshed:Date,
8
timezone:String,
9
},
10
data:[
11
{
12
date:Date,
13
open_usd:Float,
14
open_cny:Float,
15
high_usd:Float,
16
high_cny:Float,
17
low_usd:Float,
18
low_cny:Float,
19
close_usd:Float,
20
close_cny:Float,
21
volume:Float,
22
mkt_cap_usd:Float,
23
},
24
]
25
}
Copied!
JSON_DATA (String)
Simple Moving Average (SMA)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each SMA value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Series Type - The desired price type in the time series. Four types are supported: Close, Open, High, Low.
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Stock_Indicator={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:Date,
7
interval:String,
8
time_period:Int,
9
series_type:String,
10
timezone:String,
11
},
12
data:[
13
{
14
datetime:Date,
15
data:Float,
16
},
17
]
18
}
Copied!
Exponential Moving Average (EMA)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each EMA value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Series Type - The desired price type in the time series. Four types are supported: Close, Open, High, Low.
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
​
💡
Advanced Settings
Fast K Period - Defaults to 5.
Slow K Period - Defaults to 3.
Slow D Period - Defaults to 3.
Slow K Moving Average Type
Simple Moving Average (SMA)
Exponential Moving Average (EMA)
Weighted Moving Average (WMA)
Double Exponential Moving Average (DEMA)
Triple Exponential Moving Average (TEMA)
Triangular Moving Average (TRIMA)
T3 Moving Average
Kaufman Adaptive Moving Average (KAMA)
MESA Adaptive Moving Average (MAMA)
Slow D Moving Average Type
Simple Moving Average (SMA)
Exponential Moving Average (EMA)
Weighted Moving Average (WMA)
Double Exponential Moving Average (DEMA)
Triple Exponential Moving Average (TEMA)
Triangular Moving Average (TRIMA)
T3 Moving Average
Kaufman Adaptive Moving Average (KAMA)
MESA Adaptive Moving Average (MAMA)
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
STOCH={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:String,
7
interval:String,
8
fastk_period:Int,
9
slowk_period:Int,
10
slowk_ma_type:Int,
11
slowd_period:Int,
12
slowd_ma_type:String,
13
timezone:String,
14
},
15
data:[
16
{
17
date:Date,
18
slowk:Float,
19
slowd:Float,
20
},
21
]
22
}
Copied!
Relative Strength Index (RSI)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each RSI value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Series Type - The desired price type in the time series. Four types are supported: Close, Open, High, Low.
Data to Return
Most Recent (Only the latest RSI)
All
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Stock_Indicator={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:Date,
7
interval:String,
8
time_period:Int,
9
series_type:String,
10
timezone:String,
11
},
12
data:[
13
{
14
datetime:Date,
15
data:Float,
16
},
17
],
18
}
Copied!
Average Directional Movement Index (ADX)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each ADX value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Stock_Indicator={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:Date,
7
interval:String,
8
time_period:Int,
9
series_type:String,
10
timezone:String,
11
},
12
data:[
13
{
14
datetime:Date,
15
data:Float,
16
},
17
],
18
}
Copied!
Commodity Channel Index (CCI)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each CCI value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each Aroon value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
Time Series Period - Number of data points used to calculate each band value. Positive integers are accepted. (e.g. Time Period = 60, Time Period = 200)
Series Type - The desired price type in the time series. Four types are supported: Close, Open, High, Low.
​
💡
Advanced Settings
Number Deviation Up - The standard deviation multiplier of the upper bound. Defaults to 2.
Number Deviation Down - The standard deviation multiplier of the lower bound. Defaults to 2.
Moving Average Type
Simple Moving Average (SMA)
Exponential Moving Average (EMA)
Weighted Moving Average (WMA)
Double Exponential Moving Average (DEMA)
Triple Exponential Moving Average (TEMA)
Triangular Moving Average (TRIMA)
T3 Moving Average
Kaufman Adaptive Moving Average (KAMA)
MESA Adaptive Moving Average (MAMA)
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Bbands={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:Date,
7
interval:String,
8
time_period:Int,
9
deviation_mult_upper:Int,
10
deviation_mult_lower:Int,
11
ma_type:Int,
12
series_type:String,
13
timezone:String,
14
},
15
data:[
16
{
17
datetime:Date,
18
real_middle_band:Float,
19
real_upper_band:Float,
20
real_lower_band:Float,
21
},
22
],
23
}
Copied!
Chaikin A/D Line (AD)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.
​
📥
Inputs
Enter the name of the equity of your choice.
​
📤
Outputs
1
Stock_Indicator={
2
meta:{
3
symbol:String,
4
indicator:String,
5
indicator_sym:String,
6
last_refreshed:Date,
7
interval:String,
8
time_period:Int,
9
series_type:String,
10
timezone:String,
11
},
12
data:[
13
{
14
datetime:Date,
15
data:Float,
16
},
17
],
18
}
Copied!
On Balance Volume (OBV)
​
âš™
Settings
Time Interval Between Data Points - Time interval between two consecutive data points in the time series.