-
Notifications
You must be signed in to change notification settings - Fork 2
MACDEXT
This API returns the moving average convergence / divergence values with controllable moving average type. The related REST API documentation is here
The very first thing to do before diving into MACDEXT calls is to include the right namespace.
using Avapi.AvapiMACDEXT
The MACDEXT object is retrieved from the Connection object.
The snippet below shows how to get the Connection object:
...
IAvapiConnection connection = AvapiConnection.Instance
connection.Connect("Your Alpha Vantage API Key !!!!");
...
Once you got the Connection object you can extract the MACDEXT from it.
...
Int_MACDEXT macdext =
connection.GetQueryObject_MACDEXT();
To perform a MACDEXT request you have 2 options:
- The request with constants:
IAvapiResponse_MACDEXT Query(string symbol,
MACDEXT_interval interval,
MACDEXT_series_type series_type,
int fastperiod [OPTIONAL],
int slowperiod [OPTIONAL],
int signalperiod [OPTIONAL],
MACDEXT_fastmatype fastmatype [OPTIONAL],
MACDEXT_slowmatype slowmatype [OPTIONAL],
MACDEXT_signalmatype signalmatype [OPTIONAL]);
- The request without constants:
IAvapiResponse_MACDEXT QueryPrimitive(string symbol,
string interval,
string series_type,
string fastperiod [OPTIONAL],
string slowperiod [OPTIONAL],
string signalperiod [OPTIONAL],
string fastmatype [OPTIONAL],
string slowmatype [OPTIONAL],
string signalmatype [OPTIONAL]);
To perform an MACDEXT asynchronous request you have 2 options:
- The request with constants:
async Task<IAvapiResponse_MACDEXT> QueryAsync(string symbol,
MACDEXT_interval interval,
MACDEXT_series_type series_type,
int fastperiod [OPTIONAL],
int slowperiod [OPTIONAL],
int signalperiod [OPTIONAL],
MACDEXT_fastmatype fastmatype [OPTIONAL],
MACDEXT_slowmatype slowmatype [OPTIONAL],
MACDEXT_signalmatype signalmatype [OPTIONAL]);
- The request without constants:
async Task<IAvapiResponse_MACDEXT> QueryAsync(string symbol,
string interval,
string series_type,
string fastperiod [OPTIONAL],
string slowperiod [OPTIONAL],
string signalperiod [OPTIONAL],
string fastmatype [OPTIONAL],
string slowmatype [OPTIONAL],
string signalmatype [OPTIONAL]);
The parameters below are needed to perform the MACDEXT request.
- symbol: The name of the equity
- interval: The time interval between two consecutive data points in the time series.
- series_type: The price type in the time series. The types supported are: close, open, high, low
- fastperiod [OPTIONAL]: It is a optional value; positive integers are accepted. By default, fastperiod=12
- slowperiod [OPTIONAL]: It is a optional value; positive integers are accepted. By default, slowperiod=26
- signalperiod [OPTIONAL]: It is a optional value; positive integers are accepted. By default, signalperiod=9
- fastmatype [OPTIONAL]: Moving average type for the faster moving average, it is a optional value. By default: fastmatype=0, check the Alphavantage documentation for the mapping.
- slowmatype [OPTIONAL]: Moving average type for the slower moving average, it is a optional value. By default: slowmatype=0, check the Alphavantage documentation for the mapping.
- signalmatype [OPTIONAL]: Moving average type for the signal moving average, it is a optional value. By default: signalmatype=0, check the Alphavantage documentation for the mapping.
Please notice that the info above are copied from the official alphavantage documentation, that you can find here.
The request with constants implies the use of different enums:
- MACDEXT_interval
- MACDEXT_series_type
- MACDEXT_fastmatype
- MACDEXT_slowmatype
- MACDEXT_signalmatype
MACDEXT_interval: The time interval between two consecutive data points in the time series.
public enum MACDEXT_interval
{
none,
n_1min,
n_5min,
n_15min,
n_30min,
n_60min,
daily,
weekly,
monthly
}
MACDEXT_series_type: The price type in the time series. The types supported are: close, open, high, low
public enum MACDEXT_series_type
{
none,
close,
open,
high,
low
}
MACDEXT_fastmatype: Moving average type for the faster moving average, it is a optional value. By default: fastmatype=0, check the Alphavantage documentation for the mapping.
public enum MACDEXT_fastmatype
{
none,
n_0,
n_1,
n_2,
n_3,
n_4,
n_5,
n_6,
n_7,
n_8
}
MACDEXT_slowmatype: Moving average type for the slower moving average, it is a optional value. By default: slowmatype=0, check the Alphavantage documentation for the mapping.
public enum MACDEXT_slowmatype
{
none,
n_0,
n_1,
n_2,
n_3,
n_4,
n_5,
n_6,
n_7,
n_8
}
MACDEXT_signalmatype: Moving average type for the signal moving average, it is a optional value. By default: signalmatype=0, check the Alphavantage documentation for the mapping.
public enum MACDEXT_signalmatype
{
none,
n_0,
n_1,
n_2,
n_3,
n_4,
n_5,
n_6,
n_7,
n_8
}
The response of a MACDEXT request is an object that implements the IAvapiResponse_MACDEXT interface.
public interface IAvapiResponse_MACDEXT
{
string RawData
{
get;
}
IAvapiResponse_MACDEXT_Content Data
{
get;
}
}
The IAvapiResponse_MACDEXT interface has two members: RawData and Data.
- RawData: represents the json response in string format.
- Data: It represents the parsed response in an object implementing the interface IAvapiResponse_MACDEXT_Content.
Complete Example of a Console App: Display the result of a MACDEXT request by using the method Query (synchronous request)
using System;
using System.IO;
using Avapi.AvapiMACDEXT;
namespace Avapi
{
public class Example
{
static void Main()
{
// Creating the connection object
IAvapiConnection connection = AvapiConnection.Instance;
// Set up the connection and pass the API_KEY provided by alphavantage.co
connection.Connect("Your Alpha Vantage API Key !!!!");
// Get the MACDEXT query object
Int_MACDEXT macdext =
connection.GetQueryObject_MACDEXT();
// Perform the MACDEXT request and get the result
IAvapiResponse_MACDEXT macdextResponse =
macdext.Query(
"MSFT",
Const_MACDEXT.MACDEXT_interval.n_1min,
Const_MACDEXT.MACDEXT_series_type.close,
10,
10,
10,
Const_MACDEXT.MACDEXT_fastmatype.n_0,
Const_MACDEXT.MACDEXT_slowmatype.n_0,
Const_MACDEXT.MACDEXT_signalmatype.n_0);
// Printout the results
Console.WriteLine("******** RAW DATA MACDEXT ********");
Console.WriteLine(macdextResponse.RawData);
Console.WriteLine("******** STRUCTURED DATA MACDEXT ********");
var data = macdextResponse.Data;
if (data.Error)
{
Console.WriteLine(data.ErrorMessage);
}
else
{
Console.WriteLine("Symbol: " + data.MetaData.Symbol);
Console.WriteLine("Indicator: " + data.MetaData.Indicator);
Console.WriteLine("LastRefreshed: " + data.MetaData.LastRefreshed);
Console.WriteLine("Interval: " + data.MetaData.Interval);
Console.WriteLine("FastPeriod: " + data.MetaData.FastPeriod);
Console.WriteLine("SlowPeriod: " + data.MetaData.SlowPeriod);
Console.WriteLine("SignalPeriod: " + data.MetaData.SignalPeriod);
Console.WriteLine("FastMAType: " + data.MetaData.FastMAType);
Console.WriteLine("SlowMAType: " + data.MetaData.SlowMAType);
Console.WriteLine("SignalMAType: " + data.MetaData.SignalMAType);
Console.WriteLine("SeriesType: " + data.MetaData.SeriesType);
Console.WriteLine("TimeZone: " + data.MetaData.TimeZone);
Console.WriteLine("========================");
Console.WriteLine("========================");
foreach (var technical in data.TechnicalIndicator)
{
Console.WriteLine("MACD_Hist: " + technical.MACD_Hist);
Console.WriteLine("MACD_Signal: " + technical.MACD_Signal);
Console.WriteLine("MACD: " + technical.MACD);
Console.WriteLine("DateTime: " + technical.DateTime);
Console.WriteLine("========================");
}
}
}
}
}
Complete Example of a Windows Form App: Display the result of a MACDEXT request by using the method QueryAsync (asynchronous request)
using Avapi;
using Avapi.AvapiMACDEXT
using System;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
private IAvapiConnection m_connection = AvapiConnection.Instance;
private Int_MACDEXT m_macdext;
private IAvapiResponse_MACDEXT m_macdextResponse;
public Form1()
{
InitializeComponent();
}
protected override void OnLoad(EventArgs e)
{
// Set up the connection and pass the API_KEY provided by alphavantage.co
m_connection.Connect("Your Alpha Vantage Key");
// Get the MACDEXT query object
m_macdext = m_connection.GetQueryObject_MACDEXT();
base.OnLoad(e);
}
private async void MACDEXTAsyncButton_Click(object sender, EventArgs e)
{
// Perform the MACDEXT request and get the result
m_macdextResponse =
await m_macdext.QueryAsync(
"MSFT",
Const_MACDEXT.MACDEXT_interval.n_1min,
Const_MACDEXT.MACDEXT_series_type.close,
10,
10,
10,
Const_MACDEXT.MACDEXT_fastmatype.n_0,
Const_MACDEXT.MACDEXT_slowmatype.n_0,
Const_MACDEXT.MACDEXT_signalmatype.n_0);
// Show the results
resultTextBox.AppendText("******** RAW DATA MACDEXT ********" + "\n");
resultTextBox.AppendText(m_macdextResponse.RawData + "\n");
resultTextBox.AppendText("******** STRUCTURED DATA MACDEXT ********" + "\n");
var data = m_macdextResponse.Data;
if (data.Error)
{
resultTextBox.AppendText(data.ErrorMessage + "\n");
}
else
{
resultTextBox.AppendText("Symbol: " + data.MetaData.Symbol + "\n");
resultTextBox.AppendText("Indicator: " + data.MetaData.Indicator + "\n");
resultTextBox.AppendText("LastRefreshed: " + data.MetaData.LastRefreshed + "\n");
resultTextBox.AppendText("Interval: " + data.MetaData.Interval + "\n");
resultTextBox.AppendText("FastPeriod: " + data.MetaData.FastPeriod + "\n");
resultTextBox.AppendText("SlowPeriod: " + data.MetaData.SlowPeriod + "\n");
resultTextBox.AppendText("SignalPeriod: " + data.MetaData.SignalPeriod + "\n");
resultTextBox.AppendText("FastMAType: " + data.MetaData.FastMAType + "\n");
resultTextBox.AppendText("SlowMAType: " + data.MetaData.SlowMAType + "\n");
resultTextBox.AppendText("SignalMAType: " + data.MetaData.SignalMAType + "\n");
resultTextBox.AppendText("SeriesType: " + data.MetaData.SeriesType + "\n");
resultTextBox.AppendText("TimeZone: " + data.MetaData.TimeZone + "\n");
resultTextBox.AppendText("========================" + "\n");
resultTextBox.AppendText("========================" + "\n");
foreach (var technical in data.TechnicalIndicator)
{
resultTextBox.AppendText("MACD_Hist: " + technical.MACD_Hist + "\n");
resultTextBox.AppendText("MACD_Signal: " + technical.MACD_Signal + "\n");
resultTextBox.AppendText("MACD: " + technical.MACD + "\n");
resultTextBox.AppendText("DateTime: " + technical.DateTime + "\n");
resultTextBox.AppendText("========================" + "\n");
}
}
}
}
}