Showing posts with label day trading.day trading forums. Show all posts
Showing posts with label day trading.day trading forums. Show all posts

Monday, 9 July 2018

No real traders on mql5.com

https://www.mql5.com/en/forum/258814


Why is the commercial section in forex factory having 80 % of the threads?  80"  failed and can't make money from trading.
Why are there more signal sellers and ea /indicator sellers  , than I assume real traders?I am talking about all forums and brokers forums , and all the regulars on them.

Any real traders here making a profit?


Some forums are sponsored by forex bucket shops; the content on these sites is to mislead new traders. There are no profitable traders on these forums; successful traders don’t hang around amateurs. In the trading gold rush, the biggest posters on forums are the trading gold rush merchants below 

The Virtual Dealer Plugin, by MetaQuotes (producer of the MetaTrader platform) is a nasty piece of software. It is used to intentionally delay traders' orders, in order to induce slippage. If the slippage is in the trader's favor, the trader's order is executed at the requested price instead of the better price, so effectively the broker keeps the savings. If the slippage is not in the trader's favor, the difference is passed on, so the trader loses. It is a form of cheating.

If you see that your orders always take more than 1 second to execute and you only ever see slippage that is not in your favor (and never in your favor), then it is likely that the broker is using the Virtual Dealer plugin.

very dishonest site





In the California gold rush It was much more common for people to become wealthy by providing the miners with over-priced food, supplies and services. A store owner was the great beneficiary of this new found wealth. Prices increased rapidly and during this period his store had a turnover of $150,000 a month (almost $4 million in today's money). Another man who made his fortune from the gold rush. He owned a store . Trade increased dramatically during the years that followed the discovery of gold. It is claimed that he made so much money that he never needed to work again.

On mql5 site , we don't trade  we sell  expert advisors  / rent expert advisors ,  we sell signals  (like maps to trading gold mine  ), we failed at trading 

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!




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.

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, 26 November 2017

TRADE2WIN MENTOR TRAINER TEACHER COACH THREADS trading academy t2win trade2win

The  new threads are opened regularly, to hound the members and visitors with educational services offered on the forum.There is nothing for successful traders, this site is for new idiots.

Forums Proving That Most Traders Are Idiots.Read more in the next link.


http://besttradingforums.blogspot.co.uk/2017/11/forums-proving-that-most-traders-are.html


Ramping up demand for resident forum mentors forum educators forum course sellers forum teacher trainers


The real trading secrets - why trading forums suck

more advertising with more garbage threads of useless crap

Trade2Win T2W Website Join the conversation today :Meet Mr Charts buy his Nasdaq course.


Trade2Win T2W Website  Education sales



Complaint Review: Trade2Win


http://www.ripoffreport.com/reports/trade2win/internet/trade2win-trade2win-website-is-running-a-scam-on-the-internet-internet-1051204

http://reviews-trading-educator-mentor.blogspot.co.uk/2017/10/reviewsmr-charts.html


Is Trade2Win Trade2Win Website Is Running A Scam On The Internet Internet?????
http://www.trade2win.com/boards/educational-resources/16835-i-need-mentor.html



BUT NOT the guy who makes outlandish claims and not a shred of evidence to prove he's not some cheap hustler.Who is this hustler?

https://www.elitetrader.com/et/threads/do-trading-education-scammers-99-99-of-the-industry-ever-feel-guilty.312818/




We failed traders sell education on the forums.

Mr charts Mentor teacher educator

JAMES 16 FREE PRICE ACTION cOURSE YOUTUBE

JAMES 16 FREE PRICE ACTION COURSE YOUTUBE










How could a teacher on £18,000pa lose £280,000 spread betting?




http://besttradingforums.blogspot.co.uk/2017/11/trade2win-blind-leading-blind.html


                 we're not all crooks


stooges and subordinates of vendors
mentor nasdaq education
Mentor forex education sales
Trading coach
Content manager
options educator
Nasdaq trading coach
options coach
Forex coach
moderator
Site sponsor who is claimed to be a professional trader
Internet marketeer
site owner
scammers and pretender traders
learners ,amateurs and failed traders
indicator sellers
back testing software sellers
platform sellers and stooges

merchant’s agents and stooges
authors looking for free material
traders forward testing their methods  
psychologists selling services
Trading teachers
Trading gurus who failed at trading
software coders
trading system sellers
trading subjective method goons
candle education system sellers
copy trades software merchants and agents
trading university education agents
trade signal sellers
Authors book promoters and subordinates posting to increase book sales
trading gold rush map sellers
forum site owners, moderators and staff
charts educational trading pretenders with other agendas
traders
automated software services and platforms
Expert advisor  sellers
amateur system developers
failures with method developing ability
sharks sharky  and small fish
99% lose myth debunking  teams
brokers
broker’s stooges
spread betting broker stooges
bucket shop’s misinformation agents
stock pump and dump merchants 
animals and idiots
Lee  the deluded educational scammer
Education course  pump and dump merchants




Education course  pump and dump merchants




http://reviews-trading-educator-mentor.blogspot.co.uk/2017/10/reviewsmr-charts.html

Where are all the traders disappeared?

Big John operating a team of dunning kruger geniuses

TRADE2WIN blind leading the blind?education sales promotions trading academy t2w

https://beta.companieshouse.gov.uk/officers/ltbpDXnjXYBBkwoK7w_sPDjd4_8/appointments

Trade2Win T2W Website Join the conversation today :Meet Mr Charts buy his Nasdaq course.

http://www.trade2win.com/books/trading-faqs

http://www.trade2win.com/boards/educational-resources/162668-anyone-bought-19-95-t2w-trading-faqs-ebook-could-you-please-give-review.html




Trade2Win T2W Website  Education sales






Is Trade2Win T2W Website  Running A Scam On The Internet Internet?


                              http://besttradingforums.blogspot.co.uk/2017/11/forums-proving-that-most-traders-are.html

                               

http://besttradingforums.blogspot.co.uk/2017/11/99-of-day-traders-are-expected-to-lose.html

Trading industry provides quite luring opportunities to earn risk-free.. by teaching others. As far as there are wannabe traders who can afford education. But this education goes to the level of qualification of mentor and if he failed , can't trade ,  in trading then how he can teach you to success. Makes no sense.




The real trading secrets - why trading forums suck

more advertising with more garbage threads of useless crap


                forum educators blind leading the blind?


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 advising new forum traders on how to make money trading. 








https://forexfactory2017.wordpress.com/ 

http://www.trade2win.com/boards/first-steps/224020-these-forums-essentially-just-blind-leading-blind.html





https://mrchartist.wordpress.com/

Mick Jagger "Blind leading the blind". Alfie sountrack





                 we're not all crooks


stooges and subordinates of vendors                           

mentor nasdaq education
Mentor forex education sales
Trading coach
Content manager
options educator
Nasdaq trading coach
options coach
Forex coach
moderator
Site sponsor who is claimed to be a professional trader
Internet marketeer
site owner
scammers and pretender traders
learners ,amateurs and failed traders
indicator sellers
back testing software sellers
platform sellers and stooges

merchant’s agents and stooges
authors looking for free material
traders forward testing their methods  
psychologists selling services
Trading teachers
Trading gurus who failed at trading
software coders
trading system sellers
trading subjective method goons
candle education system sellers
copy trades software merchants and agents
trading university education agents
trade signal sellers
Authors book promoters and subordinates posting to increase book sales
trading gold rush map sellers
forum site owners, moderators and staff
charts educational trading pretenders with other agendas
traders
automated software services and platforms
Expert advisor  sellers
amateur system developers
failures with method developing ability
sharks sharky  and small fish
99% lose myth debunking  teams


brokers
broker’s stooges
spread betting broker stooges
bucket shop’s misinformation agents
stock pump and dump merchants 
animals and idiots
Lee  the deluded educational scammer
Education course  pump and dump merchants





Education course  pump and dump merchants




http://reviews-trading-educator-mentor.blogspot.co.uk/2017/10/reviewsmr-charts.html

Where are all the traders disappeared?




Big John operating a team of dunning kruger geniuses