Is there diagonal continuous imbalance indicator and function in MC? As you can see in attachment, we can use this indicator and signal in SC. For example: condition "Ask volume(price + 1 tick) / Bid volume(price) >= 3" is true at 3 continuous price level, or condition "Ask volume(price + 1 tick) / Bid volume(price) <= 1/3" is true at 3 continuous price level.
I'm not good at C ++ and ACSIL in SC. So i hope to develop some strategies based on this indicator in MC. Is there anyone who can help me?
Diagonal Continuous Imbalance indicator
- Attachments
-
- Continuous Imbalance.jpg
- (552.62 KiB) Not downloaded yet
-
- Diagonal Ratio.jpg
- (139.93 KiB) Not downloaded yet
Thanks, faraz.
In addition to displaying the indicators on the chart, Can we have a function that we can use in the signal and strategy?
Or someone can show me how to write this function or signal which equivalent to n consecutive diagonal buy/sell imbalance?
In addition to displaying the indicators on the chart, Can we have a function that we can use in the signal and strategy?
Or someone can show me how to write this function or signal which equivalent to n consecutive diagonal buy/sell imbalance?
- faraz
- Posts: 240
- Joined: Feb 25 2011
- Location: 1stChoiceStrategy.com
- Has thanked: 26 times
- Been thanked: 76 times
Format Instrument > Build volume On: Tick count
Add indicators;
Volume Dn
Volume Up
On Live market, notice Volume Dn Or Volume Up increase indicating market direction. Use this imbalance reading.
Add indicators;
Volume Dn
Volume Up
On Live market, notice Volume Dn Or Volume Up increase indicating market direction. Use this imbalance reading.
I do not deny the role of this indicator in indicating the direction of the market. But they are also based on the whole bar.
The value I really want to get is buy /sell volume at the specific price level . It seems that getting these values is not easy in MC as opposed to SC
The value I really want to get is buy /sell volume at the specific price level . It seems that getting these values is not easy in MC as opposed to SC
- faraz
- Posts: 240
- Joined: Feb 25 2011
- Location: 1stChoiceStrategy.com
- Has thanked: 26 times
- Been thanked: 76 times
want to get is buy /sell volume at the specific price level
Code: Select all
inputs:SpecificPrice(1500);
var:oUpTicks(0),oDownTicks(0);
if BarStatus(1)=2 then begin oUpTicks=0;oDownTicks=0;end;
if Close=SpecificPrice then begin oUpTicks=oUpTicks+UpTicks;oDownTicks=oDownTicks+DownTicks;end;
Plot1(oUpTicks);
Plot2(oDownTicks);