Colin Kimble / Publications
Forum
Trading logic won't lower drawdown and potentially asking for individuals to kindly help me see for any blind spots in my trading logic
Afternoon, the trading logic I formulated is developed by understanding the relationship between price and volume. The intention is to buy as low as possible when the last sell order has been executed (absorbed a buy order), and to sell as high as possible when the last buy order has been executed
Tick based volume and pivot point value relationship
Hi! I wanted to ask if someone could help me understand my logic better. Is it incorrect to interpret: Volume[1] > Volume[2] && Open[0] > Pivot Point // Sell orders have been absorbed and now the market is in a bullish direction Volume[1] < Volume[2] && Open[0] > Pivot Point // buy orders have been
Reversal trading logic
Hi! I wanted to ask if someone could spot my 'logic' with regards to perfecting reversals wether bullish or bearish. Bearish reversal: High[ 1 ] > High[ 2 ] && Open[ 0 ] < Close[ 1 ] && Volume[ 0 ] > Volume[ 1 ] Bullish reversal: Low[ 1 ] < Low[ 2 ] && Open[ 0 ] > Close[ 1 ] && Volume{ 0 ] > Volume[
RSI divergence/reversal logic
Hi! I wanted to ask if someone can 'spot' me and double check if my logic is correct with regards to using a RSI to spot a market reversal by means of a using a 1minute RSI with a 14 period value. Is there any room for improvement for better accuracy? int OnInit () { RSIOneMinute = iRSI (
OBV convergence
Hi! I've found multiple sources online for a tutorial on a OBV divergence, I've struggled finding tutorials on OBV convergence. Does anyone have any good sources for tutorials
Yearly OHLC
Hi! I saw it's possible to get the OHLC of the month using the enum time frame, is the same possible with a yearly time frame? Thank you
IsRising && IsFalling, Uptrend and Downtrend, and Saucer patterns
Hi! I just wanted to ask if someone could 'spot' me and double check if my understanding is 100% correct with regards to: 1. Coding an uptrend would be: Open[0] > Open[1] Coding a downtrend would be: Open[0] < Open[1] 2. Coding a IsRising would be: Momentum [1] > Close[1] Coding a IsFalling would
Custom Enum time frames
In Ninja traders 8 platform one can customize time frames when getting the return value for the OHLC by adding a data series which one square bracket would say how many bars ago, and the other square bracket would give the time frame value calculated in minutes. Is the same thing possible with
Intraday pivotpoint calculations and daily trading signals relationship to the market
I wanted to lean on someone's knowledge who has significant experience and knowledge in trading. Is there a relation between intraday pivot point calculations and daily trading signals with regards to buying after the daily low towards the high, and selling after the daily high towards the low
Closing my position according to Magic number
Hi! I have tried to have my EA close my position according to the magic number (1 is for long trades and 2 is for short trades), whenever I try to print the value of the current magic number the value is void and thus my trades can only exit based on time. Does someone know where I might have gone