CloseOutDedline
property
Date when position will be closed. Available for Futures.
Syntax
public DateTime CloseOutDedline { get; set; }
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace CloseOutDedlineExamples
{
public class CloseOutDedlineExamples : NETStrategy
{
public override void OnQuote()
{
Instrument inst = Instruments.GetInstrument("/ES[U4]");
DerivativeSettings ds = inst.GetDerivativeSettings();
Print(ds.CloseOutDedline);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.