Jump to content

Recommended Posts

Posted

Hi,

Anyone tried this ?

http://www.forexwarlord.com/

 

 

Extracted from the above site:

 

This Brand New 3 In 1 Robot Takes No Prisoners

Forex Warlord is a new Forex Robot that has been created using the latest technology,

That has allowed us to build a robot with 3 different systems inside it

By simply adjusting the advanced settings you could have it trading as either a:

 

1) Scalper

2) Day Trader

3) Long Term Trader

 

In fact, Forex Warlord can be altered to suit whatever your preferred trading method is, so that it works for you...

 

Forex Warlord is proven to be a great success and is encoded with the trading strategies of the pros...

 

We have programmed it with the type of strategies that the nation's top hedge funds managers and investment bankers use.

 

Believe me, we have personally picked the brains of the elite traders in the country

And combined this with our own extensive knowledge to help create Forex Warlord.

Never before has a 3 in 1 Forex Robot like Forex Warlord been created before

If you are after steady safe gains, then look no further as you have just found what you need in this EA

 

Reliable, Profitable and So Simple To Use...

Posted

Re: REQUIRED forex WARLORD

 

The Ihcimoku ea seems to be much better. Warlord seems to yield very different results in back testing between brokers. Results with for example Sig are much better than with Alpari. It also needs to be adjusted to 5-digits.

Posted

Re: forex WARLORD

 

It seems that the way people are making money now days are by taking simple systems or systems that "seem" profitable, packaging it up in a big marketing campaign, and selling it for the magic number of $97.

 

I bet all these people make a killing just to put out these crap systems..

Posted

Re: forex WARLORD

 

It seems that the way people are making money now days are by taking simple systems or systems that "seem" profitable, packaging it up in a big marketing campaign, and selling it for the magic number of $97.

 

I bet all these people make a killing just to put out these crap systems..

 

 

I concur, just look at the number of EA & trading systems release per month.

 

Perhaps we should have a section for discussion on those skills:

 

- how to create fancy marketing sites to sell the forex stuffs

- how to make cool promo videos, training videos

- how to build email list to market your product

- how to create lots of products

- strategies to attract customers to keep buying

 

:D

Posted

Re: forex WARLORD

 

another Scam !

3 lines of code, and a loosing system!

 

This is the complete code :

 

#property copyright "EU M5"

#property link ""

 

extern double Lots = 1.0;

extern double Risk = 5.0;

extern double TakeProfit = 25.0;

extern double Stoploss = 150.0;

extern double TrendPower = 40.0;

extern double TrendLevel = 300.0;

extern double Sensitivity = 41.0;

extern double Slippage = 2.0;

extern double MagicNumber = 12225.0;

double g_point_148;

bool gi_156;

 

int init() {

g_point_148 = MarketInfo(Symbol(), MODE_POINT);

gi_156 = TRUE;

return (0);

}

 

int deinit() {

return (0);

}

 

int start() {

double l_imomentum_16;

double l_iadx_24;

double l_iosma_40;

double l_iwpr_48;

double l_imacd_56;

if (TimeMonth(TimeCurrent() && TimeYear(TimeCurrent())) >= 12.2029 && gi_156 == TRUE) {

Alert("The EA has expired");

gi_156 = FALSE;

}

if (gi_156 == FALSE) return (0);

double l_lots_0 = 0;

int l_pos_8 = 0;

if (Bars < 10) {

Print("No Trade !!");

return (0);

}

if (OrdersTotal() < 1) {

if (AccountFreeMargin() < 1.0 * Lots) {

Print("Money is Not Enough !!");

return (0);

}

l_lots_0 = MathCeil(AccountEquity() * Risk / 10000.0) / 10.0;

HideTestIndicators(TRUE);

l_imomentum_16 = iMomentum(NULL, 0, TrendLevel, PRICE_OPEN, 0);

l_iadx_24 = iADX(NULL, 0, TrendPower, PRICE_CLOSE, MODE_MAIN, 0);

l_iosma_40 = iOsMA(NULL, 0, 90, 99, 88, PRICE_OPEN, 1);

l_iwpr_48 = iWPR(NULL, 0, Sensitivity, 0);

l_imacd_56 = iMACD(NULL, 0, 90, 99, 88, PRICE_TYPICAL, MODE_SIGNAL, 0);

HideTestIndicators(FALSE);

if (l_imacd_56 > 0.0 && l_iosma_40 > 0.0 && l_imomentum_16 > 100.0 && l_iadx_24 > 21.0 && l_iwpr_48 < -80.0) {

OrderSend(Symbol(), OP_BUY, l_lots_0, Bid, Slippage, Bid - Stoploss * g_point_148, Ask + TakeProfit * g_point_148, "Buy(#" + MagicNumber + ")", MagicNumber, 0, Blue);

return (0);

}

if (l_imacd_56 < 0.0 && l_iosma_40 < 0.0 && l_imomentum_16 < 100.0 && l_iadx_24 < 21.0 && l_iwpr_48 > -20.0) {

OrderSend(Symbol(), OP_SELL, l_lots_0, Ask, Slippage, Ask + Stoploss * g_point_148, Bid - TakeProfit * g_point_148, "Sell(#" + MagicNumber + ")", MagicNumber, 0, Red);

return (0);

}

}

int l_ord_total_12 = OrdersTotal();

for (l_pos_8 = 0; l_pos_8 < OrdersTotal(); l_pos_8++) {

OrderSelect(l_pos_8, SELECT_BY_POS, MODE_TRADES);

if (OrderType() <= OP_SELL && OrderSymbol() == Symbol()) {

if (OrderType() == OP_BUY) {

if (OrderOpenTime() - (TimeCurrent() >= 300) || AccountProfit() > 2.0) {

if (TimeCurrent() - (OrderOpenTime() >= 300) || AccountProfit() > 2.0) {

OrderClose(OrderTicket(), OrderLots(), Ask, 0, Violet);

return (0);

}

}

}

}

}

l_ord_total_12 = OrdersTotal();

for (l_pos_8 = 0; l_pos_8 < OrdersTotal(); l_pos_8++) {

OrderSelect(l_pos_8, SELECT_BY_POS, MODE_TRADES);

if (OrderType() <= OP_BUY && OrderSymbol() == Symbol()) {

if (OrderType() == OP_SELL) {

if (TimeCurrent() - (OrderOpenTime() >= 300) || AccountProfit() > 2.0) {

OrderClose(OrderTicket(), OrderLots(), Bid, 0, Violet);

return (0);

}

}

}

}

return (0);

}

Posted

Re: forex WARLORD

 

I tried this EA on a demo account. Used 15m EURCHF chart and set the EA to 240 time frame, the rest was default. I let it trade from Jan 5, 2009 to oct 13. It didn't make a lot of trades (49) but they were at least in profit in the end.

Posted

Re: forex WARLORD

 

This is a good EA perhaps the old "pet rock". In the strategy tester working, but in the live trading didn't open any trades. This EA was created to working at 4 digits broker.

V2 just been released, 4 days after V1

  • 3 weeks later...
Posted

Re: forex WARLORD

 

from 4XProject : Paul Liburd is known as the vendor of prior products like Forex Transformer or Forex Accumulator.???and Forex Transformer is based on an FREE expert advisor called parabolic.

and,forex WARLORD is ??? X_X

  • 1 month later...
  • 2 weeks later...
  • 3 weeks later...
  • 2 weeks later...
Posted

Re: forex WARLORD

 

This EA is not opening trades everyday. But when it opens, you can potentially make few hundred pips per trade.

 

It is a trend following system, and I have a trade open 2 days ago giving me almost 200 pips and still going strong ...

Posted

Re: forex WARLORD

 

This EA is not opening trades everyday. But when it opens, you can potentially make few hundred pips per trade.

 

It is a trend following system, and I have a trade open 2 days ago giving me almost 200 pips and still going strong ...

 

I just asked because the maunal says that it will not work on ECN ?????

I attached it on my DemoAccount on Monday and did not have a trade yet.????

Posted

Re: forex WARLORD

 

I am using it on M5 both on EU and GU. Currently EU has netted more than 200 pips and still going ...

 

What broker are you running it on and what version of the EA do you have running?

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...