Login
Try VertexFX
  • Home
  • Knowledgebase
  • Blog
  • Home
  • Knowledgebase
  • Blog

TA Functions

home/Knowledge Base/Technical Support/API/Client API's/VTL/VTL Client Scripts/TA Functions/MACDOnArray

MACDOnArray

9 views 0 Updated on December 16, 2021 hybrid-solutions

Syntax

 Public Sub MACDOnArray(ByVal OpenAry As Variant, ByVal HighAry As Variant, ByVal LowAry As Variant, ByVal CloseAry As Variant, ByVal SignalPeriod As Integer, ByVal FastEMA As Integer, ByVal SlowEMA As Integer, ByRef Result As Variant, ByRef Signal As Variant)

Description

A procedure that calculates MACD, based on a custom array, and the result passed by result parameter as an array, each index of the result array represent indicator value corresponds to that index of the source array.

Parameters

Parameter Description
OpenAry The open array
HighAry The High array
LowAry The low array
CloseAry The close array
SignalPeriod SignalPeriod as integer
FastEMA FastEMA as integer
SlowEMA SlowEMA as integer
Result The Result Array
Signal Byref parameter, return signal value

Return value

Returns a double value.

Sample

Public Sub main()        Dim HighAry ()        Dim LowAry ()        Dim OpenAry ()        Dim CloseAry ()        Dim result()        Dim SignalPeriod        Dim FastEMA        Dim SlowEMA        Dim Signal        SignalPeriod = 9        FastEMA = 12        SlowEMA = 26        CopyHigh 0, 1, Bars (0), HighAry        CopyLow 0, 1, Bars (0), LowAry        CopyOpen 0, 1, Bars (0), OpenAry        CopyClose 0, 1, Bars (0), CloseAry        MACDOnArray OpenAry, HighAry, LowAry, CloseAry, CInt (SignalPeriod), CInt (FastEMA), CInt (SlowEMA), Result, Signal        AlertMessage "The indicator value of the record 50 : " & Result(50)End Sub

See Also

  • StandardDeviationOnArray
  • MoneyFlowIndexOnArray
  • AccumulativeSwingIndexOnArray


Back to VTL Client Script Index

Was this helpful?

Yes  No
Leave A Comment Cancel reply

  ParabolicSAROnArray

StandardDeviationOnArray  

About
VertexFX Trader has a closed-loop trading structure with Backoffice dealing desk, Client Terminals, Dedicated Hosting, White Labelling and Bridging Capabilities. Through VertexFX Risk Management Bridge...
Categories
  • Release Notes
  • Technical Support
  • VertexFX Pro Setup
  • Mobile Trader
  • Lite VertexFX Mobile Trader
Community
  • Blog
  • Media Center
Need Support?
If you need any further help, don't hesitate to send a support request to our support team.
Contact Support
  • Privacy Policy
  • Brokers Terms
  • Traders EULA
  • ISV Terms
  • Plugins EULA
  • Copyright 2023 hybridsolutions.com. All Rights Reserved.