Not sure what you are asking to display.
If I understand what you are attempting I would create 3 alerts. One with both buy conditions. One for the candle and one for the fractal. In the Expert listing place the most restrictive one first, the candle and fractal. The next two would be in your order of preference. I would tie the fractal and candle formulas together with a "AND" condition.
I also do one other step in my experts & formulas, I wrap the in an IF statement that resolves to 1 if true and 0 if false. This way I can write the expert/explorer statement as "if (fml A = 1)
For this I would write the following:
The first Expert condition
Candle Fml = 1 AND Fractal Fml = 1 - Select the symbol/color and text for this alert
The second
Candle Fml = 1 - Select the symbol/color and text for this alert
The third
Fractal Fml = 1 - Select the symbol/color and text for this alert
Now you have 3 separate alerts which will fire in the order you desire.
Following is my Dark Cloud Cover alert. I am only interested in this during an uptrend:
DarkCloud() = 1 AND Ref(HIGH,-3) > Ref(HIGH,-4) AND Ref(HIGH,-2) > Ref(HIGH,-3) AND Ref(HIGH,-1) > Ref(HIGH,-2)
Following is my Evening Doji Star:
EveningDojiStar()=1
I have a pile of these in a Candle Expert advisor. The most restrictive, requiring more price bars, are first.
D
EGO Sum Qua EGO Sum
Sempre Avanti
--- On Thu, 1/28/10, vinodkochappan <vinodkochappan@yahoo.com> wrote:
From: vinodkochappan <vinodkochappan@yahoo.com> Subject: [EquisMetaStock Group] Metastock Expert To: equismetastock@yahoogroups.com Date: Thursday, January 28, 2010, 11:05 AM
Hi,
i have an metastock expert which has buy signal and fractal formula.my problem is that if one same candle meets the buy condition and fractal conditon it's showing only the buy ,not the fractal...is there any way to plot the both in d same candle.
Thanx n regds.....
Vinod
|