This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################## Ticks to candles in kiteconnect python #################### | |
# Author : Arun B | |
# Reference : http://ezeetrading.in/Articles/Candles_formation_from_tick_data_zerodha.html | |
# Purpose : Convert ticks to candles by putting ticks in a queue. This redues time wasted in on_ticks function | |
################################################################################ | |
from kiteconnect import KiteTicker | |
import datetime | |
from copy import copy | |
import queue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is simple ORB Breakout AFL, can be planned for any Breakout Strategy, Run explorer to see the data points | |
Planned for 15 MIn candle as default, but you can plan this strategy based on your need. The breakout is mentioned below for 15 minute candle for Indian market | |
Developed by DTM FInancial Solutions www.dailytrademantra.com | |
Please contact us for any clarification or further query : [email protected] | |
*/ | |
_SECTION_BEGIN("ORB Breakout AFL"); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This is simple ORB Breakout AFL, can be planned for any Breakout Strategy, Run explorer to see the data points | |
Planned for 15 MIn candle as default, but you can plan this strategy based on your need. The breakout is mentioned below for 15 minute candle for Indian market | |
Developed by DTM FInancial Solutions www.dailytrademantra.com | |
Please contact us for any clarification or further query : [email protected] | |
*/ | |
_SECTION_BEGIN("ORB Breakout AFL"); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Hi traders, | |
Here is a simple generic example for implementing a postback mechanism. You can host this in a remote server or in your local server itself. | |
Run Locally | |
=========== | |
1. Install ngrok from https://ngrok.com/ |