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