Jump to content

[req] Amazing Profits EA


Recommended Posts

Re: [req] Amazing Profits EA

 

there is no live/forward proof....

 

yeah i just looked at the video too and thought the same thing.

 

also seems like its a manual exit; just from the language he was using.

"It is inconceivable that anyone will divulge a truly effective get-rich scheme for the price of a book."

Victor Niederhoffer (1943–), US hedge fund manager and statistician

Link to comment
Share on other sites

  • 2 weeks later...

Re: [req] Amazing Profits EA

 

Hi

 

Can someone please give a look at this EA... It looks very great! I want buy it but before I want test it, because I'm not sure if this is real or only a SCAM.

 

Can someone please share this EA? Or can someone tell me if this is a good EA or a SCAM?

 

In Forexpeacearmy the people give good statements about this company.

 

forexpeacearmy.com/public/submitReview/3651

 

Thanks,

megainvest

Link to comment
Share on other sites

  • 2 months later...

Re: [req] Amazing Profits EA

 

Nobody has this EA?? It seems to have done exceptionally well over this year.

 

Oct '09 = +1943 pips

Sept '09 = +2016 pips

Aug '09 = +2157 pips

etc...

 

The indicator shown in the videos seems similar to the NonLagMA indicator. Does anyone have any further info about this EA and indicator?

Link to comment
Share on other sites

Re: [req] Amazing Profits EA

 

Hi

 

Can someone please give a look at this EA... It looks very great! I want buy it but before I want test it, because I'm not sure if this is real or only a SCAM.

 

Can someone please share this EA? Or can someone tell me if this is a good EA or a SCAM?

 

In Forexpeacearmy the people give good statements about this company.

 

forexpeacearmy.com/public/submitReview/3651

 

Thanks,

megainvest

 

 

hi, your link to forex peace army doesnt work... and I cannot find the mentioned EA on that website.

can you please fix.

 

thanks

Link to comment
Share on other sites

Re: [req] Amazing Profits EA

 

the EA is at http://www.strategydepot.com

 

by looking at the october video you can see that the EA uses some type of moving average line. also, the video shows the best case scenario as the EA gets in automatically but you have to figure out when to exit. in the video you see the maximum pips you could have gotten in the move but you decide when to get out. since it is based on some type of moving average you will then be susceptible to chop loss trades in trying to figure out when to exit.

Link to comment
Share on other sites

  • 4 weeks later...

Re: [req] Amazing Profits EA

 

This guy is SUCH a fake! In the videos, he makes it look like he refers to a whole range of EMAs, but in the actual EA, he just looks for crossovers between EMA30 & 70. God, I just wish these fakers could be dragged to hell!

 

Here's the code for both the EA as well as the indicator, compilable, but not worth it in my opinion:

 

Amazing Profits EA

/*

Generated by EX4-TO-MQ4 decompiler V4.0.224.1 []

Website: http://purebeam.biz

E-mail : [email][email protected][/email]

*/

extern string Copyright = "Strategy Depot, LLC All Rights Reserved";

extern string Author = "www.StrategyDepot.com";

extern string ExpertName = "Amazing Trend Profits EA";

extern int Account = 0;

extern double BuyStopLoss = 0.0;

extern double SellStopLoss = 0.0;

extern double BuyTakeProfit = 0.0;

extern double SellTakeProfit = 0.0;

extern double BuyTrailingStop = 0.0;

extern double SellTrailingStop = 0.0;

extern double Lots = 0.1;

extern int Slippage = 3;

extern bool UseTradeHour = FALSE;

extern int FromHour = 0;

extern int ToHour = 23;

extern bool UseAlertSound = TRUE;

extern string AlertSoundFileName = "alert.wav";

extern color OpenBuyColor = Blue;

extern color CloseBuyColor = Aqua;

extern color OpenSellColor = Red;

extern color CloseSellColor = Aqua;

 

void deinit() {

Comment("");

}

 

int start() {

int l_ord_close_144;

int l_ord_close_148;

bool li_156;

watermark();

if (UseTradeHour) {

if (!(Hour() >= FromHour && Hour() <= ToHour)) {

Comment("Time for trade has not come else!");

return (0);

}

}

if (Bars < 100) {

Print("bars less than 100");

return (0);

}

if (Account > 0 && Account != AccountNumber()) {

Comment("Trade on account :" + AccountNumber() + " FORBIDDEN!");

return (0);

}

if ((BuyStopLoss > 0.0 && BuyStopLoss < 10.0) || (SellStopLoss > 0.0 && SellStopLoss < 10.0)) {

Print("StopLoss less than " + 10);

return (0);

}

if ((BuyTakeProfit > 0.0 && BuyTakeProfit < 10.0) || (SellTakeProfit > 0.0 && SellTakeProfit < 10.0)) {

Print("TakeProfit less than " + 10);

return (0);

}

double l_ima_0 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_8 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_16 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_24 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_32 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_40 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_48 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_56 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_64 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_72 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_80 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_88 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_96 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_104 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 0);

double l_ima_112 = iMA(NULL, PERIOD_M30, 30, 0, MODE_EMA, PRICE_CLOSE, 1);

double l_ima_120 = iMA(NULL, PERIOD_M30, 70, 0, MODE_EMA, PRICE_CLOSE, 1);

if (AccountFreeMargin() < 1000.0 * Lots) {

Print("We have no money. Free Margin = " + AccountFreeMargin());

return (0);

}

bool l_bool_128 = FALSE;

bool l_bool_132 = FALSE;

bool l_bool_136 = FALSE;

bool l_bool_140 = FALSE;

l_bool_128 = l_ima_0 > l_ima_8 && l_ima_16 <= l_ima_24;

l_bool_132 = l_ima_64 < l_ima_72 && l_ima_80 >= l_ima_88;

l_bool_136 = l_ima_32 < l_ima_40 && l_ima_48 >= l_ima_56;

l_bool_140 = l_ima_96 > l_ima_104 && l_ima_112 <= l_ima_120;

if (!ExistPositions()) {

if (l_bool_128) {

OpenBuy();

return (0);

}

if (l_bool_132) {

OpenSell();

return (0);

}

}

if (ExistPositions()) {

if (OrderType() == OP_BUY) {

if (l_bool_136) {

l_ord_close_144 = OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, CloseBuyColor);

if (l_ord_close_144 && UseAlertSound) PlaySound(AlertSoundFileName);

return (0);

}

}

if (OrderType() == OP_SELL) {

if (l_bool_140) {

l_ord_close_148 = OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, CloseSellColor);

if (l_ord_close_148 && UseAlertSound) PlaySound(AlertSoundFileName);

return (0);

}

}

}

if (BuyTrailingStop > 0.0 || SellTrailingStop > 0.0) {

for (int l_pos_152 = 0; l_pos_152 < OrdersTotal(); l_pos_152++) {

if (OrderSelect(l_pos_152, SELECT_BY_POS, MODE_TRADES)) {

li_156 = TRUE;

if (OrderMagicNumber() != 729936 && 1) li_156 = FALSE;

if (OrderSymbol() == Symbol() && li_156) {

if (OrderType() == OP_BUY && BuyTrailingStop > 0.0) {

if (Bid - OrderOpenPrice() > BuyTrailingStop * Point)

if (OrderStopLoss() < Bid - BuyTrailingStop * Point) ModifyStopLoss(Bid - BuyTrailingStop * Point);

}

if (OrderType() == OP_SELL) {

if (OrderOpenPrice() - Ask > SellTrailingStop * Point)

if (OrderStopLoss() > Ask + SellTrailingStop * Point || OrderStopLoss() == 0.0) ModifyStopLoss(Ask + SellTrailingStop * Point);

}

}

}

}

}

return (0);

}

 

void watermark() {

ObjectCreate("StrategyDepot.com", OBJ_LABEL, 0, 0, 0);

ObjectSetText("StrategyDepot.com", "Copyright © 2009 StrategyDepot.com", 9, "Arial", Red);

ObjectSet("StrategyDepot.com", OBJPROP_CORNER, 2);

ObjectSet("StrategyDepot.com", OBJPROP_XDISTANCE, 5);

ObjectSet("StrategyDepot.com", OBJPROP_YDISTANCE, 10);

}

 

bool ExistPositions() {

bool li_4;

for (int l_pos_0 = 0; l_pos_0 < OrdersTotal(); l_pos_0++) {

if (OrderSelect(l_pos_0, SELECT_BY_POS, MODE_TRADES)) {

li_4 = TRUE;

if (OrderMagicNumber() != 729936 && 1) li_4 = FALSE;

if (OrderSymbol() == Symbol() && li_4) return (TRUE);

}

}

return (FALSE);

}

 

void ModifyStopLoss(double a_price_0) {

int l_bool_8 = OrderModify(OrderTicket(), OrderOpenPrice(), a_price_0, OrderTakeProfit(), 0, CLR_NONE);

if (l_bool_8 && UseAlertSound) PlaySound(AlertSoundFileName);

}

 

void OpenBuy() {

double l_price_0 = 0;

double l_price_8 = 0;

if (BuyStopLoss > 0.0) l_price_0 = Bid - BuyStopLoss * Point;

if (BuyTakeProfit > 0.0) l_price_8 = Bid + BuyTakeProfit * Point;

int l_ticket_16 = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, l_price_0, l_price_8, ExpertName, 729936, 0, OpenBuyColor);

if (l_ticket_16 > -1 && UseAlertSound) PlaySound(AlertSoundFileName);

}

 

void OpenSell() {

double l_price_0 = 0;

double l_price_8 = 0;

if (SellStopLoss > 0.0) l_price_0 = Ask + SellStopLoss * Point;

if (SellTakeProfit > 0.0) l_price_8 = Ask - SellTakeProfit * Point;

int l_ticket_16 = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, l_price_0, l_price_8, ExpertName, 729936, 0, OpenSellColor);

if (l_ticket_16 > -1 && UseAlertSound) PlaySound(AlertSoundFileName);

}

[\code]

 

 

Amazing Profits indicator

[code]

/*

Generated by EX4-TO-MQ4 decompiler V4.0.224.1 []

Website: http://purebeam.biz

E-mail : [email][email protected][/email]

*/

#property copyright "Strategy Depot, LLC All Rights Reserved"

#property link "www.StrategyDepot.com"

 

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_color1 Green

#property indicator_color2 Red

 

int g_period_76 = 30;

int g_period_80 = 70;

double g_ibuf_84[];

double g_ibuf_88[];

int gi_92 = 0;

 

int init() {

SetIndexStyle(0, DRAW_LINE);

SetIndexBuffer(0, g_ibuf_84);

SetIndexStyle(1, DRAW_LINE);

SetIndexBuffer(1, g_ibuf_88);

SetIndexShift(0, 0);

SetIndexShift(1, 0);

return (0);

}

 

int deinit() {

return (0);

}

 

int start() {

double l_ima_0;

double l_ima_8;

watermark();

int li_20 = IndicatorCounted();

if (li_20 < 0) return (-1);

if (li_20 > 0) li_20--;

int li_16 = Bars - li_20;

for (int li_24 = 0; li_24 < li_16; li_24++) {

l_ima_0 = iMA(Symbol(), 0, g_period_76, 0, MODE_EMA, PRICE_CLOSE, li_24);

l_ima_8 = iMA(Symbol(), 0, g_period_80, 0, MODE_EMA, PRICE_CLOSE, li_24);

if (l_ima_0 >= l_ima_8) {

if (gi_92 == -1) g_ibuf_88[li_24] = (l_ima_0 + l_ima_8) / 2.0;

g_ibuf_84[li_24] = (l_ima_0 + l_ima_8) / 2.0;

gi_92 = 1;

} else {

if (gi_92 == 1) g_ibuf_84[li_24] = (l_ima_0 + l_ima_8) / 2.0;

g_ibuf_88[li_24] = (l_ima_0 + l_ima_8) / 2.0;

gi_92 = -1;

}

}

return (0);

}

 

void watermark() {

ObjectCreate("StrategyDepot.com", OBJ_LABEL, 0, 0, 0);

ObjectSetText("StrategyDepot.com", "Copyright © 2009 StrategyDepot.com", 9, "Arial", Red);

ObjectSet("StrategyDepot.com", OBJPROP_CORNER, 2);

ObjectSet("StrategyDepot.com", OBJPROP_XDISTANCE, 5);

ObjectSet("StrategyDepot.com", OBJPROP_YDISTANCE, 10);

}

[\code]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...