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 and Co-Creator of Algomojo (Algorithmic Trading Platform for DIY Traders)

Last 1 Hour Intraday Range on Expiry Day – Amibroker AFL Exploration Code

28 sec read

Here is a simple AFL exploration code that scans and retrieves the last 1 hour of Intraday high and low range on expiry day. Generating this sort of statistics can be further analyzed particularly if you are a weekly options trader.

Amibroker Exploration

Amibroker AFL Code for Last 1 Hour Intraday Range on Expiry Day

//Coded by Rajandran R - Founder - Marketcalls / Co-Founder - Algomojo
//Coded on 22nd Feb 2023
//Website - www.marketcalls.in / www.algomojo.com
//Exploration Module

_SECTION_BEGIN("Computing Last 1 Hour Range on Weekly Expiry");

starttime = 143000;
endtime = 153000;

hi = HighestSince(TimeNum()==starttime,High);
lo = lowestSince(TimeNum()==starttime,low);

range = hi-lo;

Filter = TimeNum()==endtime AND DayOfWeek()==4;
AddColumn(Close,"LTP");
AddColumn(Hi,"High Value");
AddColumn(Lo,"Low Value");
AddColumn(range,"Last Hour Range");


_SECTION_END();
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 and Co-Creator of Algomojo (Algorithmic Trading Platform for DIY Traders)

Dynamic Color Coding in Amibroker Profit Tables: A Visually…

Profit tables are a valuable tool for traders and investors to analyze the trading strategy performance of their investments over time. However, the traditional...
Rajandran R
3 min read

Plotting Dynamic Intraday Straddle Charts using Amibroker

Recently Intraday Straddle sellers are on the rise and so the questions to us about how to plot intraday straddle spread dynamically during the...
Rajandran R
3 min read

Send Smart Options Execution Orders from Futures or Spot…

This tutorial provides instructions on how to utilize simple buy and sell trading signals in Spot/Future charts to place option orders (including ATM, ITM,...
Rajandran R
11 min read

Leave a Reply

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