Showing posts with label forexfactory. Show all posts
Showing posts with label forexfactory. Show all posts

Sunday, 3 June 2018

tradeciety stochastics price action indicator codes mt4



The stochastics indicator is also a price action indicator.It is compared to the price indicator, posted in the chart below. Stochastic is used by professionals and bank traders.They use it on daily and 4 hour charts.There are less false signals on 28/6/10 settings

Please take this free knowledge and wisdom from the thread, to improve your trading.
The technical analysis is already available on the free charts .The stochastic indicator is already doing the price action analysis on most trader's charts.This eliminates the need for price action candle by candle,analysis for longer term swing traders and trend  traders.





stochastics will result in demise of charlatan price action educators..Avoid quacks and charlatan educators.




make up your own mind ,I am providing evidence




just put this on mt4 and compile

//+------------------------------------------------------------------+
//| best price action course free tradeciety          Stochastic.mq4 |
//|                   Copyright 2005-2014, MetaQuotes Software Corp. |
//|                       tradeciety             http://www.mql4.com |
//+------------------------------------------------------------------+
#property copyright   "2005-2014, MetaQuotes Software Corp."
#property link        "http://www.mql4.com"
#property description "Stochastic Oscillator"
#property strict

#property indicator_separate_window
#property indicator_minimum    0
#property indicator_maximum    100
#property indicator_buffers    2
#property indicator_color1     LightSeaGreen
#property indicator_color2     Red
#property indicator_level1     20.0
#property indicator_level2     80.0
#property indicator_levelcolor clrSilver
#property indicator_levelstyle STYLE_DOT
//--- input parameters
input int InpKPeriod=28; // K Period
input int InpDPeriod=6; // D Period
input int InpSlowing=10; // Slowing
//--- buffers
double ExtMainBuffer[];
double ExtSignalBuffer[];
double ExtHighesBuffer[];
double ExtLowesBuffer[];
//---
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit(void)
  {
   string short_name;
//--- 2 additional buffers are used for counting.
   IndicatorBuffers(4);
   SetIndexBuffer(2, ExtHighesBuffer);
   SetIndexBuffer(3, ExtLowesBuffer);
//--- indicator lines
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0, ExtMainBuffer);
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1, ExtSignalBuffer);
//--- name for DataWindow and indicator subwindow label
   short_name="Sto("+IntegerToString(InpKPeriod)+","+IntegerToString(InpDPeriod)+","+IntegerToString(InpSlowing)+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,short_name);
   SetIndexLabel(1,"Signal");
//---
   draw_begin1=InpKPeriod+InpSlowing;
   draw_begin2=draw_begin1+InpDPeriod;
   SetIndexDrawBegin(0,draw_begin1);
   SetIndexDrawBegin(1,draw_begin2);
//--- initialization done
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Stochastic oscillator                                            |
//+------------------------------------------------------------------+
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    i,k,pos;
//--- check for bars count
   if(rates_total<=InpKPeriod+InpDPeriod+InpSlowing)
      return(0);
//--- counting from 0 to rates_total
   ArraySetAsSeries(ExtMainBuffer,false);
   ArraySetAsSeries(ExtSignalBuffer,false);
   ArraySetAsSeries(ExtHighesBuffer,false);
   ArraySetAsSeries(ExtLowesBuffer,false);
   ArraySetAsSeries(low,false);
   ArraySetAsSeries(high,false);
   ArraySetAsSeries(close,false);
//---
   pos=InpKPeriod-1;
   if(pos+1<prev_calculated)
      pos=prev_calculated-2;
   else
     {
      for(i=0; i<pos; i++)
        {
         ExtLowesBuffer[i]=0.0;
         ExtHighesBuffer[i]=0.0;
        }
     }
//--- calculate HighesBuffer[] and ExtHighesBuffer[]
   for(i=pos; i<rates_total && !IsStopped(); i++)
     {
      double dmin=1000000.0;
      double dmax=-1000000.0;
      for(k=i-InpKPeriod+1; k<=i; k++)
        {
         if(dmin>low[k])
            dmin=low[k];
         if(dmax<high[k])
            dmax=high[k];
        }
      ExtLowesBuffer[i]=dmin;
      ExtHighesBuffer[i]=dmax;
     }
//--- %K line
   pos=InpKPeriod-1+InpSlowing-1;
   if(pos+1<prev_calculated)
      pos=prev_calculated-2;
   else
     {
      for(i=0; i<pos; i++)
         ExtMainBuffer[i]=0.0;
     }
//--- main cycle
   for(i=pos; i<rates_total && !IsStopped(); i++)
     {
      double sumlow=0.0;
      double sumhigh=0.0;
      for(k=(i-InpSlowing+1); k<=i; k++)
        {
         sumlow +=(close[k]-ExtLowesBuffer[k]);
         sumhigh+=(ExtHighesBuffer[k]-ExtLowesBuffer[k]);
        }
      if(sumhigh==0.0)
         ExtMainBuffer[i]=100.0;
      else
         ExtMainBuffer[i]=sumlow/sumhigh*100.0;
     }
//--- signal
   pos=InpDPeriod-1;
   if(pos+1<prev_calculated)
      pos=prev_calculated-2;
   else
     {
      for(i=0; i<pos; i++)
         ExtSignalBuffer[i]=0.0;
     }
   for(i=pos; i<rates_total && !IsStopped(); i++)
     {
      double sum=0.0;
      for(k=0; k<InpDPeriod; k++)
         sum+=ExtMainBuffer[i-k];
      ExtSignalBuffer[i]=sum/InpDPeriod;
     }
//--- OnCalculate done. Return new prev_calculated.
   return(rates_total);
  }
//+------------------------------------------------------------------+



Trend trading has no edge 80% of trends fail and lose money

Micael covel makes money from selling books, seminars and education.Those who can trade trends trade for a living, those who can't write books and selling seminars for a living.Trend following does not make money.
charlatan educators
How much misinformation is posted in the internet ,books,analysis, quack forums, seminars etc etc etc?Just imagine 20,000 trading books, there is only one road from A to B ,yet traders are bombarded with 20,000 maps, one indicator does the job yet there are over 5,000 indicators on mql4.com site.If a driver had 5,000 indicators, he would not not which direction to take, in his very simple journey.

https://community.ig.com/t5/General-Trading-Strategy/Trading-misinformation-Quack-views-on-brokers-and-trading/td-p/26398


Trend following not working on my 7,000 backtests !

http://www.trade2win.com/boards/trading-systems/226850-trend-following-not-working-my-7-000-backtests.html

Why 80% fail at using a trend following technique to trade the forex




Why 80% fail at using a trend following technique to trade the forex




Trend trading failure of trend breakouts

THE TREND IS YOUR FRIEND UNTIL THE END WHEN IT BENDS.

Trends are only visible in hindsight , as image example below shows .Most trend traders lose money in chop , when breakouts become consolidation zones.There are more trend failures than trends materializing , most traders lose money trying to find the illusive trends.




The difficult journey making profitable EAS



The previous versions have been caught in choppy markets , as per images.The Eas are good bit the markets are very choppy, I am bringing out newer versions advanced versions to make money in choppy markets.

Sunday, 10 December 2017

Mr Charts Mrcharts Nasdaq NYSE trading system by Meir Barak FREE VIDEOS TO WATCH

NASDAQ proven profitable systems  Nasdaq NYSE trading system:free trading systems by a professional trader









Day trading NASDAQ stocks -- $1,083 in 1 hour -- Meir Barak



Day Trading for $13,436 in one hour! - Meir Barak

















https://www.investopedia.com/articles/basics/03/103103.asp

Here Below  are links to profitable trading systems created by Foroom lluzers (real name:forum loser).These strategies are free and have to be learnt.

You can also go to youtube , by searching on google , with any word from the following threads and on the stock charts site .The example is , I want to find reliable support and resistance , and youtube comes up with the following video.





                                                           

Strategy 1  on trade2win forum
                A strategy for trading Dax /Dow making 100 ticks a week on average .
                20 /30 profitable Dow Dax weekly 100 ticks profit
                 http://www.trade2win.com/boards/trading-journals/224896-20-30-profitable-dow-dax-weekly-100-ticks-profit.html#post2936040

Strategy 2  on trade2win forum
                A stock trading strategy with options trading
                       775% profit option trade set and forget
     http://www.trade2win.com/boards/futures-options/224072-775-profit-option-trade-set-forget.html

Strategy 3  on trade2win forum
                A futures trading strategy with options trading
                 D t profitable weekly straddle strategy  
  http://www.trade2win.com/boards/futures-options/224830-d-t-profitable-weekly-straddle-strategy.html


Strategy 4  on trade2win forum
                A trend trading support  strategy for stocks trading
                profitable support and resistance trading on stocks
http://www.trade2win.com/boards/stocks/224932-profitable-support-resistance-trading-stocks.html

Strategy 5  on trade2win forum
                A trend trading support  strategy
                high probability trend trading
http://www.trade2win.com/boards/trading-systems/223498-high-probability-trend-trading.html

Strategy 6  on trade2win forum
                A trend trading currencies strategy
                high probability trend trading for currencies
                How professionals trade forex
http://www.trade2win.com/boards/forex/223410-how-profeessionals-trade-forex.html

additional threads of use

additional threads of use
               t/a Market timing versus predicting roulette
http://www.trade2win.com/boards/technical-analysis/223866-t-market-timing-versus-predicting-roulette.html
       
               Trend trading failure of trend breakouts
http://www.trade2win.com/boards/technical-analysis/224246-trend-trading-failure-trend-breakouts.html

80 % fail at trend trading

Trading Mindsets is 80 % of Success



TRADE2WIN blind leading the blind?education sales promotions


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




forum losers: Avoid forum scammers selling education, mentoring and coaching.These are failed traders on forum.


Friday, 8 December 2017

Forex professional strategy how professionals trade

Professionals trade Forex, only when there are expectations of interest rates changes in the future  or some fundamental drivers of currency prices.

The only successful currency trader I know is George Soros.

I don't go to Forex factory because I know these places are full of losers, trading failures, scammers,idiots  and stupid people.Most of the trading on Forex is done by forum idiots, it is done randomly against fundamentals.Did you ever see George Soros on a forum?

keep-away-from-trading-forums

https://trade2winsite.wordpress.com/keep-away-from-trading-forums/

If you want to learn the truth, follow my blog, spending time on it reading the truth, will avoid wasting your life of a fruitless path.It is a private blog from a real trader.

In this blog you will learn how professionals trade Forex. Here is an example of George Soros trading fundamental drivers of currencies.


George Soros Black Wednesday


https://en.wikipedia.org/wiki/Black_Wednesday

https://trade2winsite.wordpress.com/

https://www.blogger.com/profile/17025534471789490575


Why 95% of Forex Traders Lose Money!



WHY 90% OF TRADERS LOSE MONEY





                PROOF That Forex is RANDOM


                 Why Trading Forex is so Difficult

                                                                                  

The Most Difficult Part of Trading the Forex Is…



Why FOREX is the TOUGHEST INDUSTRY in the WORLD


                         FOREX IS A SCAM


    The Straight Truth About Trading Forex



                Anton Kreil Annihilates Retail                   Brokers  and "Trading Educators"



trading education scammers (99.99% of the "industry") 


The educators scammers are the blind leading the blind!




Read More

It's Getting Harder for Currency Traders to Make Money, Market Veteran Says

https://www.bloomberg.com/news/articles/2016-02-28/currency-whipsaws-squeezing-traders-27-year-market-veteran-says



BUY THE stock indices DIP
The stock market is well supported ....at support levels on 4 h ,daily and weekly charts, buy the pull backs, then sit and wait for a week or two .It is also supported by fed put , investor support and money printing.Trading is very easy and very simple .Just get a set and forget strategy , on the stock indices for free .It will take you a few days to devise , at zero cost and you will get financial freedom.It avoids the snake oil of market timing , psychological wired to lose handicap and is very easy to learn.

Forex does not have a dip spring, where prices drop and rebound upwards.This is why only idiots trade forex randomly without any long term trend.

http://profitabletrading1.blogspot.co.uk/2017/10/successful-profitable-and-professional.html

Professional traders  find trading is boring , because they rarely trade  and are usually bored with the market.The market rarely offers them good exciting trading opportunities ,they don't exist everyday or every week in the markets , they are sitting bored.Professionals understand trading psychology , mistakes that traders make and they keep trading simple.Professionals make fewer mistakes and they have a good trading plan.


Forex factory declining numbers trading losers disappear




Psychology is 80% of trading success. This is because the human with a mind is going to execute the trades  and a trader’s brain command center makes all the trading decisions.The brain’s command center can shut down due to stress responses , in the middle of a trade. Emotions can override rational trading rules, systems and methods taught by educators.Good traders don't trade everyday, they rarely trade.



Why Interest Rates Matter For Forex Traders

Interest rates rise expectations give  "buy the dip " opportunities.


Basic Importance of Interest Rate Decisions





How Interest Rates Influence the Currency Markets


The currency markets are intertwined with the interest rate markets allowing sovereign rates to have a direct influence on the direction of a currency pair.




expected interest rates forex trading


expected interest rates forex trading

Professional currency traders

Professional currency traders  find trading is boring , because they rarely trade  and are usually bored with the market.The market rarely offers them good exciting trading opportunities ,they don’t exist everyday or every week in the markets , they are sitting bored.Professionals understand trading psychology , mistakes that traders make and they keep trading simple.Professionals make fewer mistakes and they have a good trading plan.

Warren Buffet trades longer horizon , forum losers and failures say otherwise.Longer term traders can make 775%.
warren
Buying the dips in the indexes makes profitable traders.
Trading is very easy and very simple .Just get a set and forget strategy , on the stockmarket for free .It will take you a few days to devise , at zero cost and you wil get financial freedom.It avoids the snake oil of market timing , psychological wired to lose handicap and is very easy to learn.
yach g s

SUCCESSFUL ,PROFITABLE AND PROFESSIONAL currency TRADERS


Professional traders  find trading is boring , because they rarely trade  and are usually bored with the market.The market rarely offers them good exciting trading opportunities ,they don’t exist everyday or every week in the markets , they are sitting bored.Professionals understand trading psychology , mistakes that traders make and they keep trading simple.Professionals make fewer mistakes and they have a good trading plan.Amateur  idiots don’t understand scalpers ,day traders and trend traders  have odds stacked against them  , these trading methods  are not suitable to make money.They can’t time the markets and markets trends fail 80% of the time .They trade scalping several times a day , trend trading and losing 80% of the time due to their mindsets .They do not understand trading psychology , and why the human brain is wired to lose in the markets.Amateurs make many more  mistakes.Amateurs lack a good plan.
Professionals trade psychologically correct method with an edge , amateurs trade methods and systems that are detrimental to their success.These amateur methods arouse psychological demons and cause them to make a lot of mistakes.
Planning and executing involve different skills that draw upon different parts of the brain. Planning the trade is largely a function of your intellect, the prefrontal cortex PFC. You create your plan in a relatively calm state of mind with your PFC in charge. But when it comes time to execute the plan, other areas of your brain will become involved.
Traders have zero edge , unless you have a mental edge .All your delusional edges are worth zero , if you can’t execute your edge.This is a statement according to Mark Douglas.He preached patience, discipline and eliminating errors.

Mark Douglas – MIND OVER MARKET (Full length Interview)

“No man ever reached to excellence in any one art or profession without having passed through the slow and painful process of study and preparation,” he wrote.
Here is something else he wrote on the secret to success.
“If there is such a thing as a secret to the nature of trading, this is it: At the very core of one’s ability 1) to trade without fear or overconfidence, 2) perceive what the market is offering from its perspective, 3) stay completely focused in the “now moment opportunity flow,” and 4) spontaneously enter the ‘zone,’ it is a strong virtually unshakeable belief in an uncertain outcome with an edge in your favor.
Price action relies on timing the markets , but this has been proven to be too difficult for most , according to this article below and free google searches .
Price action relies on being reality with the markets , and this article on t2w examines whe traders are not in reality with the markets.
The third most important reason is , traders using subjective price action most are set to be defeated with mind traps , there is thread on it in the psychology section.Human mind traps are the same , if applied to trading or any other activity.
In conclusion Mark Douglas, one of the greatest trading educators and authors of our time , taught us the opposite of the fake philosophy for trading genuises who only sell education, but can’t trade .His 10 rules contradict with the application of price action education of James 16 .
1. Be rigid with rules, flexible with targets.
2. Focus on opportunities that provide an edge.
3. Trade free of expectations of being right or wrong.
4. Synchronise your mind to the truth of the market.
5. Beleive in uncertanity (The market can do anything)
6. Be flexible so as to perceive with the greatest degree of clarity and objectivity of what the market is offering from its perspective.
7. Be careful what you project into the future because nothing has got the potential to create more misery and unhappiness than unfulfilled expectations.
8. To make money, trade without fear but also overconfidence.
9. The degree to which you think you know, or assume you know or need to know what is going to happen next, equals to the degree you will fail as a trader.
10. What you perceive in the market is limited to what you know less that what is blocked by fear.

Trading forums. Are we here to meet all the trading failures and losers on forums ?