Alert Needed on Colored MACD - different from standard
Please add alert when crosses zero line. thank you
Printable View
Alert Needed on Colored MACD - different from standard
Please add alert when crosses zero line. thank you
Yes, this is good indicator ... and as I see - Igorad coded email alert too:
Attachment 1398
Hi igorad,
Thank's for all the nice indicators.
I think there is a little bug on the AdaptiveLaguerreRSI_v3.
When I click on the AdapatativeMode to put it on 1, the chart fade away.
Hi ffoo,
This indicator? http://newdigital-world.com/trading-....html#post2857
If you change Length to 11 for example so it will work.
I am not a coder but I think that Length 24 is too much for AdapatativeMode = 1.
Hi ffoo,
Please take a look at this post.
Regards,
Igor
It work fine now, thank you guys !
Hi, guys!
Is it possible to create indicator which one will show the level of average Stop loss for multytrades in accordance with risk % indicated by inputs?
I am using indicator like this for getting calculation of an average entry price. (attached)
Below the picture with example.
Blue line is level of Average entry calculated by indicator.
Red line is manually calculated level of Average stop loss.
Attachment 1513
Attachment 1514
In ьн mind the formula for calculation should be like below:
StopLossLevel =AverageEntryLevel – StopLoss
StopLoss = RiskMoney / PositionSize* TickSize/ UnitCost
RiskMoney = Size * Risk / 100
extern double Risk = 1; // Risk tolerance in percentage points
Size = AccountBalance()
PositionSize= OrderLots()
UnitCost = MarketInfo(Symbol(), MODE_TICKVALUE);
TickSize = MarketInfo(Symbol(), MODE_TICKSIZE);
Hi DmitryFX,
Please take a look at the improved Show_AverageEntryPrice_v1 indicator where I added some new options and parameters including the average StopLoss Levels plus now you have ability to work with Long and Short Positions simultaneously.
Code:extern bool ShowMarketPrice = true;
extern color ColorMarketPrice = OrangeRed;
extern bool ShowAvgEntryPrice = true;
extern color ColorAvgBuyEntry = LimeGreen;
extern color ColorAvgSellEntry = Orange;
extern bool ShowStopLoss = true;
extern double RiskFactor = 5; // Risk Factor(in %) for StopLoss calculation
extern color ColorBuyStopLoss = DeepSkyBlue;
extern color ColorSellStopLoss = LightCoral;
extern color SwapColorLong = Lime;
extern color SwapColorShort = Red;
extern bool ShowProfit = true;
extern string FontName = "Arial Black";
extern int FontSize = 10;
extern color ColorProfit = DarkSalmon;
extern bool ShowLineLabels = true;
extern bool ShowSwapInfo = true;
Attachment 1540
Aslo you can use the updated ManualTrader_v1.2 to set StopLoses by the Risk Factor.
Regards,
Igor