Monday, 9 July 2018

mbinladen alais bin laden of forex

bin-LADEN ALIAS OSAMA BIN LADEN of forex

I LOST MONEY AT TRADING, i failed at rading DUE TO PSYCHOLOGY , SO I WROTE CODES AND LIVE OFF AS A CODER.

I use moving average indicator to create and rename it into 50 indicators

I   BIN LADEN  OF FOREX used to copy and rehash and rename indicators. I pretend


to trade, but nowadays as a failed trader  ,  I only  rehash and rename indicators.

If any one can scam new traders, into believing 500 new indicators  made from a simple moving average, we could create 500 new indicators and dishonestly take money from new traders on forex tsd.

Forex tsd forum failed with all the trading failures  on it.

Anton Kreil explains   about us scammers

I rehash and rename mt4 indicators   and sell them , it is called scamming new traders. We We rehashed simple moving average into 500 different indicator and renamed them.sold 


here is the truth  hear the video





Why  99% of  Traders  Fail or Lose Money?


99 % of traders actually lose




95% lose with one broker , the other 4% lose with other brokers, that makes it 99% lose!

The whole trading industry benefactors , rely on hiding the importance of 99% lose , in order to attract new traders to open accounts.If a forum,broker , mentor or vendor , was to advertise “you will lose because the traders are wired to lose ” , nobody from the vendor side is going to make money .This is because they won’t attract new traders , the brokerage model relies on new recruits to replace the losers of this year. Mentors will not get new subscribers and educators will lose out 

The forums have rebuttal posters on forums to deceive readers, that is not true and valid argument.Forums make more more money from brokers, if they debunk 99% lose.

It is not in the interests of forexfactory site or any forum , the brokers who advertise on it  and the commercial cesspit of vendors on it.............................to promote the truth.The truth 99% lose!

The truth 99% lose!



Complaint Review: Forex Factory



Complaint Review: Trade2Win




mql5.com scams:Are there scams on mql5.com?

IS  FOREX IS A SCAM? - WHY TRADERS LOSE MILLIONS TRADING FOREX AND USING WEALTH GENERATORS

BIN LADEN ALIAS OSAMA BIN LADEN of forex

I LOST MONEY AT TRADING DUE TO PSYCHOLOGY , SO I WROTE CODES AND LIVE OFF AS A CODER.

I   BIN LADEN  OF FOREX used to copy and rehash and rename indicators. I pretend to trade, but nowadays as a failed trader  ,  I only  rehash and rename indicators.

If any one can scam new traders, into believing 500 new indicators  made from a simple moving average, we could create 500 new indicators and dishonestly take money from new traders on forex tsd.

Forex tsd forum failed with all the trading failures  on it.

Anton Kreil explains   about us scammers



//+------------------------------------------------------------------+
//|                                                      binladen_Colour.mq4 |
//|                                                         Copyright 2015, @ |
//|                                                    https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2015, Raj Enterprises Limited"
#property link      "eatrader@raj-enterprises.co.uk"
#property version   "1.00"
#property strict
#property indicator_chart_window
#property indicator_buffers 10
input color UpColor=clrGreen;
input color DownColor=clrRed;
input int LWMA1=20;
input int LWMA2=30;
input int LWMA3=100;
input int LWMA4=200;
input int LWMA5=1000;
double upma1[],upma2[],upma3[],upma4[],upma5[];
double downma1[],downma2[],downma3[],downma4[],downma5[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
 
   SetIndexBuffer(0,upma1);
   SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2,UpColor);
   SetIndexDrawBegin(0,LWMA1);
   SetIndexBuffer(1,downma1);
   SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2,DownColor);
   SetIndexDrawBegin(1,LWMA1);
   SetIndexLabel(0,"LWMA("+IntegerToString(LWMA1)+")");
   SetIndexLabel(1,"LWMA("+IntegerToString(LWMA1)+")");
 
   SetIndexBuffer(2,upma2);
   SetIndexStyle(2,DRAW_LINE,STYLE_SOLID,2,UpColor);
   SetIndexDrawBegin(2,LWMA2);
   SetIndexBuffer(3,downma2);
   SetIndexStyle(3,DRAW_LINE,STYLE_SOLID,2,DownColor);
   SetIndexDrawBegin(3,LWMA2);
   SetIndexLabel(2,"LWMA("+IntegerToString(LWMA2)+")");
   SetIndexLabel(3,"LWMA("+IntegerToString(LWMA2)+")");
 
   SetIndexBuffer(4,upma3);
   SetIndexStyle(4,DRAW_LINE,STYLE_SOLID,2,UpColor);
   SetIndexDrawBegin(4,LWMA3);
   SetIndexBuffer(5,downma3);
   SetIndexStyle(5,DRAW_LINE,STYLE_SOLID,2,DownColor);
   SetIndexDrawBegin(5,LWMA3);
   SetIndexLabel(4,"LWMA("+IntegerToString(LWMA3)+")");
   SetIndexLabel(5,"LWMA("+IntegerToString(LWMA3)+")");
 
   SetIndexBuffer(6,upma4);
   SetIndexStyle(6,DRAW_LINE,STYLE_SOLID,2,UpColor);
   SetIndexDrawBegin(6,LWMA4);
   SetIndexBuffer(7,downma4);
   SetIndexStyle(7,DRAW_LINE,STYLE_SOLID,2,DownColor);
   SetIndexDrawBegin(7,LWMA4);
   SetIndexLabel(6,"LWMA("+IntegerToString(LWMA4)+")");
   SetIndexLabel(7,"LWMA("+IntegerToString(LWMA4)+")");
 
   SetIndexBuffer(8,upma5);
   SetIndexStyle(8,DRAW_LINE,STYLE_SOLID,2,UpColor);
   SetIndexDrawBegin(8,LWMA5);
   SetIndexBuffer(9,downma5);
   SetIndexStyle(9,DRAW_LINE,STYLE_SOLID,2,DownColor);
   SetIndexDrawBegin(9,LWMA5);
   SetIndexLabel(8,"LWMA("+IntegerToString(LWMA5)+")");
   SetIndexLabel(9,"LWMA("+IntegerToString(LWMA5)+")");
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---
      int  limit=rates_total-prev_calculated;
      if(rates_total<=LWMA1) return(0);
      if(prev_calculated==0)limit=rates_total-2; 
      for( int i=limit;i>=0;i--){
         double curMa1=iMA(Symbol(),0,LWMA1,0,MODE_LWMA,PRICE_CLOSE,i);
         double prevMa1=iMA(Symbol(),0,LWMA1,0,MODE_LWMA,PRICE_CLOSE,i+1);
         double curMa2=iMA(Symbol(),0,LWMA2,0,MODE_LWMA,PRICE_CLOSE,i);
         double prevMa2=iMA(Symbol(),0,LWMA2,0,MODE_LWMA,PRICE_CLOSE,i+1);
         double curMa3=iMA(Symbol(),0,LWMA3,0,MODE_LWMA,PRICE_CLOSE,i);
         double prevMa3=iMA(Symbol(),0,LWMA3,0,MODE_LWMA,PRICE_CLOSE,i+1);
         double curMa4=iMA(Symbol(),0,LWMA4,0,MODE_LWMA,PRICE_CLOSE,i);
         double prevMa4=iMA(Symbol(),0,LWMA4,0,MODE_LWMA,PRICE_CLOSE,i+1);
         double curMa5=iMA(Symbol(),0,LWMA5,0,MODE_LWMA,PRICE_CLOSE,i);
         double prevMa5=iMA(Symbol(),0,LWMA5,0,MODE_LWMA,PRICE_CLOSE,i+1);
         downma1[i]=EMPTY_VALUE;
         upma1[i]=EMPTY_VALUE;
         downma2[i]=EMPTY_VALUE;
         upma2[i]=EMPTY_VALUE;
         if(curMa1>prevMa1){
            upma1[i]=curMa1;
            upma1[i+1]=prevMa1;
         }
         if(curMa1<prevMa1){
            downma1[i]=curMa1;
            downma1[i+1]=prevMa1;
         }
         if(curMa2>prevMa2){
            upma2[i]=curMa2;
            upma2[i+1]=prevMa2;
         }
         if(curMa2<prevMa2){
            downma2[i]=curMa2;
            downma2[i+1]=prevMa2;
         }
         if(curMa3>prevMa3){
            upma3[i]=curMa3;
            upma3[i+1]=prevMa3;
         }
         if(curMa3<prevMa3){
            downma3[i]=curMa3;
            downma3[i+1]=prevMa3;
         }
         if(curMa4>prevMa4){
            upma4[i]=curMa4;
            upma4[i+1]=prevMa4;
         }
         if(curMa4<prevMa4){
            downma4[i]=curMa4;
            downma4[i+1]=prevMa4;
         }
       
         if(curMa5>prevMa5){
            upma5[i]=curMa5;
            upma5[i+1]=prevMa5;
         }
         if(curMa5<prevMa5){
            downma5[i]=curMa5;
            downma5[i+1]=prevMa5;
         }
      }
   
//--- return value of prev_calculated for next call
   return(rates_total);
  }
//+------------------------------------------------------------------+

bad reviews mql5.com signals

https://www.forexpeacearmy.com/forex-reviews/9977/mql5.com-signals








                                 mql5 scam threads about dishonesty






I recently found the MQL5.com community, that provides signals. And I saw this signal: FastWayToMillionFree Trading Signal for MetaTrader 4 Social Trading8 . It has 5441 subscribers, lots of positive reviews, and it's a real account.
But can they fake the results? This is too good to be true, has a 4 050% Profit/Month and a very good trade history

Beware of Free EAs Repackaged as Commercial Robots like USDBot


The growing market in “expert advisor” software or EAs, also called forex trading robots, has proved a fertile breeding ground for forex fraud.
Self-styled EA “developers” — who actually seem to act more like hyper active marketers — still seem to be making outrageous profitability claims in an attempt to market their faulty products to those unfamiliar with trading robot scams.

mql5.com losers on trading forums

Since this thread has become a thread for posting beautiful images, could you start another thread   called real trading jokes, because here everybody thinks trading jokes  = beautiful images.

Even the moderator thinks jokes = posting images of scenery.


95 % of traders lose; a Google search below confirms this. Just do a search on Google with 95% of traders lose psychology ,95 % of traders lose money.They end up on forums as teachers to new traders   , 95% losers  hang around trading forums, and forums are infested with losers who advise new losers on the forums. These traders have lost money, are unsuccessful, don’t know how to trade successfully, are selling eas and indicators  new forum traders and advising  on how to make money trading. 


There is a lot of good stuff out there, but unfortunately 99.9% is garbage.It is virtually impossible task for the little man to be successful, one has to experience and understand profitable trading The industry is the blind leading the blind.Those who failed write books,teach,coach,sell seminars,signals and generally breed the failures of tomorrow.Those who can do, those who can't teach,write books,sell  signals.coach, educate and sell maps of technical analysis..Those who can trade,trade!Those who know nought are gurus to the new failures of tomorrow.These people mislead ea developers.We have industry of >98 % failures, they don't know how to trade, never traded profitably, these failures made money from selling books, signals,educationalist courses,trading seminars,trading advice,selling eas, tools,software,  pretending to be traders and stooges for bucket shops, they are  teaching how to trade profitably, when they don't know how.


MQL idiots have invented 500 indicators from a  simple moving average


Monday, 25 June 2018

TRADE2WIN IG COMMUNITY meet alexander elder

Trading For a Living: Alexander Elder - (Audio Book:Great video





Complaint Review: Trade2Win


Is this true?


Why 99% of Forex Traders will Lose Money!


The whole trading industry benefactors , rely on hiding the importance of trading psychology , in order to attract new traders to open accounts.If a broker , mentor or vendor , was to advertise "you will lose because the traders are wired to lose " , nobody from the vendor side is going to make money .This is because they won't attract new traders , the brokerage model relies on new recruits to replace the losers of this year. Mentors will not get new subscribers and educators will lose out .

Sunday, 3 June 2018

IG community all trading forums suck

http://besttradingforums.blogspot.com/

All trading forums suck, some  customers of I G  who post on I G  community are also members of private forums.Many of them are the same charlatans and quacks from private forums.I G can not ban customers who are also charlatans and quacks, because they are customers.To read about forum participants read the following

How to make money like a pro in the markets

 https://community.ig.com/t5/General-Trading-Strategy/How-to-make-money-like-a-pro-in-the-markets/td-p/26510

successful traders don't have time to post on forums .If you are any good at trading ,you would want your mindset to be clear and focused on your trading , and free of ambiguity and crap from losers from forums.

A boxer can't win by listening to the crowd , but by listening to his coach.The important thing with trading is to have a clear mindset , free from any useless distractions , free from any necessary overload on the mind.When volatility breaks out undivided attention is required on the charts and trading requires a load of concentration , and precise timing of entries.

The habit of posting and addictive posting often interferes with trading and mindset and mental overload.It is mainly for undisciplined/unsuccessful traders .A good trader should be stalking the market with undivided attention , like a lion stalking.











I lose money on forex ,buying forex education on the forum and gambling.I  can’t trade so I sell education on forums.nvp



Why  are they real traders and real traders  post and have disappeared?

search 95% lose trade2win threads


Breaking: IG Group Buys DailyFX from FXCM for $40m

DailyFX is one of the most visited foreign exchange trading news and research portals.

https://www.financemagnates.com/forex/brokers/breaking-ig-group-buys-fxcm-dailyfx-40-mln/
http://t2wlulz.blogspot.com/2017/10/entertainment-day-trading-is-dumb-day.html

http://forum-mentors.blogspot.com/2017/12/trade2win-t2w-education-scam.html#more

successful traders   post here 





£25 Bonus With IG Casino







Anton Kreil Annihilates Retail Brokers and "Trading Educators"




Forum scammer selling education , who is this scammer AND ON WHICH  FORUM .forexfactory forum  ???????????????

The real trading secrets - why trading forums suck

Traders trade and when they are done with it they just enjoy their lives or sometimes help aspiring traders. Losers, on the other hand, spend their time on trading forums looking for new victims/traders to teach them to be newer losers.They pretend to be traders, to sell trading systems, methods,education, mentoring, coaching, trading seminars,  books,  holy grail of trading success  books, indicators, platforms etc    to the new visitors to forums.

http://www.eminimethods.com/why_trading_forums_suck_article_46.html




There is a lot of good stuff out there, but unfortunately 99.9% is garbage.It is virtually impossible task for the little man to be successful, one has to experience and understand profitable trading The industry is the blind leading the blind.Those who failed write books,teach,coach,sell seminars,signals and generally breed the failures of tomorrow.Those who can do, those who can't teach,write books,sell  signals.coach, educate and sell maps of technical analysis..Those who can trade,trade!Those who know nought are gurus to the new failures of tomorrow.These people mislead ea developers.We have industry of >98 % failures, they don't know how to trade, never traded profitably, these failures made money from selling books, signals,educationalist courses,trading seminars,trading advice,selling eas, tools,software,  pretending to be traders and stooges for bucket shops, they are  teaching how to trade profitably, when they don't know how.