- Python Algorithmic Trading Cookbook
- Pushpak Dagade
- 288字
- 2021-06-11 18:29:25
Circuit limits of a financial instrument
Each financial instrument has a well-defined price band. The instrument price is expected to be within this price band for the day. During the market hours, if the instrument price breaches the band on the upper or lower side, trading may be halted for the instrument by the exchange for a certain time or the entire day. This is done to prevent the sudden rise or fall in an instrument's price within a single day. The upper edge of the price band is known as the upper circuit limit and the lower edge of the price band is known as the lower circuit limit. This data is static, meaning it doesn't change during the day. However, it can significantly change from one day to another. This recipe helps find the circuit limits for a financial instrument.
Getting ready
Make sure the broker_connection and instrument1 objects are available in your Python namespace. Refer to the Technical requirements section of this chapter to set up broker_connection. Refer to the Attributes of a financial instrument recipe of this chapter to set up instrument1.
How to do it…
Fetch and print the lower and upper circuit limits of instrument1:
>>> lower_circuit_limit, upper_circuit_limit = \
broker_connection.get_circuit_limits(instrument1)
>>> print(f'Lower circuit limit: {lower_circuit_limit}')
>>> print(f'Upper circuit limit: {upper_circuit_limit}')
We get the following output (your output may differ):
Lower circuit limit: 315.9
Upper circuit limit: 386
How it works…
The get_circuit_limits() method of the BrokerConnectionZerodha class fetches the lower and upper circuit limits as a tuple for the given financial instrument. This method takes an object of the Instrument type as a parameter. We use instrument1 as the parameter here.
- 數據展現的藝術
- 電氣自動化專業英語(第3版)
- 零起步輕松學單片機技術(第2版)
- 電力自動化實用技術問答
- 高性能混合信號ARM:ADuC7xxx原理與應用開發
- SharePoint 2010開發最佳實踐
- 21天學通Java Web開發
- 控制系統計算機仿真
- 基于32位ColdFire構建嵌入式系統
- 大學C/C++語言程序設計基礎
- OpenStack Cloud Computing Cookbook
- Python:Data Analytics and Visualization
- SAP Business Intelligence Quick Start Guide
- 零起點學西門子S7-200 PLC
- 21天學通Linux嵌入式開發