Rajandran R Telecom Engineer turned Full-time Derivative Trader. Mostly Trading Nifty, Banknifty, USDINR and High Liquid Stock Derivatives. Trading the Markets Since 2006 onwards. Using Market Profile and Orderflow for more than a decade. Designed and published 100+ open source trading systems on various trading tools. Strongly believe that market understanding and robust trading frameworks are the key to the trading success. Writing about Markets, Trading System Design, Market Sentiment, Trading Softwares & Trading Nuances since 2007 onwards. Author of Marketcalls.in)

How to Plot the Equity Curve without Backtesting?

1 min read

Equity Curve is the graphical representation of how your money grows when you follow a particular trading system over a period of time. It shows whether your trading strategy is making money or loosing over a period of time.

In Amibroker the general way of computing the Equity curve is to backtest the given trading system and the report computes the equity curve, drawdown…etc results for you. And to compute the equity curve you have to push the backtest button every time which makes you little uncomfortable if you want to measure the Equity curve in realtime.

Here is a simple example which solves the problem and makes to measure the Equity curve to be computed in realtime. You can use this as a template in your trading strategies to calculate and plot the equity curve in realtime.

[wp_ad_camp_5]

 
Set the Initial Parameters

Let us assume that we have a Initial capital of Rs2,00,000 and we want to test our trading system in Nifty futures(10% Margin deposit Required) and Rs100 for per leg transaction for two lots of Nifty Futures(i.e Rs200 for both buy and Sell. Then the Intial Parameters can be set using the AFL code as shown below

//Initial Parameters

SetOption( “InitialEquity”, 200000);
SetOption(“FuturesMode” ,True);
SetOption(“MinShares”,1);
SetOption(“CommissionMode”,2);
SetOption(“CommissionAmount”,100);
SetOption(“AccountMargin”,10);
SetOption(“RefreshWhenCompleted”,True);

//Position Sizing

SetPositionSize(100,spsShares);

Buy/Sell Logic

Once the initial parameters are set then you need to concentrate on your buy and sell logic. Here in this case i had taken a simple EMA crossover 20 and 50 in this example for easier understanding and the logic is code as afl as shown below.

Rules are very Simple Buy when 20 EMA crosses 50EMA on the upper side(Positive Crossover) and sell when 50EMA crosses 20 EMA on the downside(negative crossover).

//Parameters

MALength1 = Optimize(“MALength1”,20,1,5,1);
MALength2 = Optimize(“MALength2”,50,1,5,1);

//Buy-Sell Logic

Buy = Cross(ema( C, MALength1 ),ema( C, MALength2 ));
Sell =Cross( ema( C, MALength2 ), ema( C, MALength1 )) ;

Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );

Short = Sell;
Cover = Buy;

Compute Equity Curve

In Amibroker the equity function returns single-security Equity line based on buy/sell/short/cover rules, buy/sell/short/coverprice arrays, all apply stops, and all other backtester settings.

For Example e=equity(0,1); retrieves the equity curve for based on buy/sell/short/cover rules with the given initial parameters. however if you want to retrieve the equity curve only for the selected from and to dates then checkout the following example which computes the equity curve between 1st May 2014 to 31st May 2014 and it computes in realtime.

start = ParamDate( “Start Date”, “2014-05-01” );
end=ParamDate( “End Date”, “2014-05-31” );
e=Equity(1,3,start,end); //Calculates for the Date Specific Quotes

For more detailed information refer the Equity Function in Amibroker.

Nifty Futures Equity Curve
Image showing the Nifty May futures hourly charts along with the Equity curve since 1st May 2014.

Download Simple EMA Crossover Trading System with Equity Curve plot

[note: Code provided here is for illustration purpose only]
Rajandran R Telecom Engineer turned Full-time Derivative Trader. Mostly Trading Nifty, Banknifty, USDINR and High Liquid Stock Derivatives. Trading the Markets Since 2006 onwards. Using Market Profile and Orderflow for more than a decade. Designed and published 100+ open source trading systems on various trading tools. Strongly believe that market understanding and robust trading frameworks are the key to the trading success. Writing about Markets, Trading System Design, Market Sentiment, Trading Softwares & Trading Nuances since 2007 onwards. Author of Marketcalls.in)

[Live Coding Webinar] Build Your First Trading Bridge for…

In this course, you will be learning to build your own trading bridge using Python. This 60-minute session is perfect for traders, Python enthusiasts,...
Rajandran R
1 min read

[Webinar] Understanding and Mitigating Curve Fitting in System Trading

"Understanding and Mitigating Curve Fitting in System Trading"! This dynamic session aims to equip novice to intermediate traders, quantitative analysts, and financial engineers with...
Rajandran R
1 min read

P-Signal Strategy Long Only Strategy – Amibroker AFL Code

This tutorial provides an overview of the P-Signal reversal strategy, a quantitative trading strategy that utilizes statistical parameters and error functions to generate probabilistic...
Rajandran R
2 min read

2 Replies to “How to Plot the Equity Curve without Backtesting?”

Leave a Reply

Get Notifications, Alerts on Market Updates, Trading Tools, Automation & More