Gets margin for positions.
SYNTAX
public double GetMarginForPositions (string assetName)
PARAMETERS
assetName — string
Asset name
RETURN
double Returns margin for positions
EXAMPLE
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace GetMarginForPositionsExamples
{
public class GetMarginForPositionsExamples : NETStrategy
{
public override void OnQuote()
{
Account acc = Accounts.Current;
Print(acc.GetMarginForPositions("USD").ToString());
}
}
}