You need to enable JavaScript in order to visit our site!
 
Logo PTMC
NAVIGATION
CANCEL
 
or via PTMC account
Restore password
or via PTMC account
Logo PTMC
NAVIGATION
or via PTMC account
Restore password
or via PTMC account
or via PTMC account
Restore password
or via PTMC account

FillAdded

event
Occurs when the new trade is made.

Syntax

public event Action<Fill> FillAdded

Example


 The trading request is sent in the following example. The position opens by request. Once this trade is done, FillAdded event is triggered that evokes the method NewFill  and deduces all the information about the trade.
 
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;

namespace FillsExample
{
	public class FillsExample : NETStrategy
	{
		public override void Init()
		{
			Fills.FillAdded += NewFill;//creates an action that responds to the emergence of a new trade.
		}        
		
		public override void OnQuote()
		{
			NewOrderRequest request = new NewOrderRequest //creation of a new trading order request.
			{
				Instrument = Instruments.Current,
				Account = Accounts.Current,
				Side = Operation.Buy,
				Type = OrdersType.Market,
				Price = Instruments.Current.LastQuote.Ask,
				Amount = 1,
				TimeInForce=TimeInForce.GTC,
				MarketRange = 1000,
			};
			
			Orders.Send(request); //sends trading order.
		}
		
		//The method that is triggered after the trade was made.
		public void NewFill(Fill lastFill)
		{
			//outputting of all the information about the trade.
			Print(
				"--------------------------------------------\n"+
				"Instrument : \t"	+lastFill.Instrument+"\n"+
				"Account : \t"		+lastFill.Account+"\n"+
				"Id : \t"			+lastFill.Id+"\n"+
				"OrdeId : \t"		+lastFill.OrderId+"\n"+
				"PositionId : \t"	+lastFill.PositionId+"\n"+
				"Amount : \t"		+lastFill.Amount+"\n"+
				"Price : \t"		+lastFill.Price+"\n"+
				"Commission : \t"	+lastFill.Commission+"\n"+
				"Profit : \t"		+lastFill.Profit+"\n"+
				"Time : \t"			+lastFill.Time+"\n"+
				"Side : \t"			+lastFill.Side+"\n"+
				"ExternalId : \t"	+lastFill.ExternalId+"\n"+
				"ExternalPrice : \t"+lastFill.ExternalPrice+"\n"+
				"Exchange : \t"		+lastFill.Exchange+"\n"+
				"Type : \t"			+lastFill.Type+"\n"+
				"--------------------------------------------"
			);
		}
		
		public override void Complete()
		{
			Fills.FillAdded -= NewFill;
		}
	
	}
}
 
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.
PTMC 是一個專業的交易平台,結合了強大的圖表和分析工具,並可在不同的金融市場進行交易。 它是由 PFSOFT UK LTD 開發的,該公司是全球銀行和經紀商交易技術提供商
© 2024. PTMC 為基於 Protrader 技術的專業交易平台
地址
臺北市大安區羅斯福路3段273號5樓
聯絡我們
電話: +886-2-2367-8583
E-mail: service@kcdatanet.com
社群
© 2024. PTMC 為基於 Protrader 技術的專業交易平台