Forex strategies - page 4

 
artikul:


Here's a turkey, so you don't suffer too much ))))


Oh, thank you very much!
 
artikul:
How do you like this strategy? ))) If price goes up, volumes go up - buy / if price goes down, volumes go down - sell? )))

And why is it that trading behind the price in the first case favours rising volumes and in the second, falling volumes?

Why such asymmetry?

 
denis_orlov:

And why is it that trading behind the price in the first case favours rising volumes and in the second, falling volumes?

Why such asymmetry?

Probably an oversight. As far as I understand, the grail structure is approximately as follows: Position = iMACD(iVolume)*iMomentum(iClose)

// The easiest way to do it on the fifteen minutes. The indicator of the indicator is very simple to build there.

 

No, not a typo, it's the same principle in the indicator:

//+------------------------------------------------------------------+
//|                                                        iGuru.mq4 |
//|                             Copyright © 2010, EGEN Software LTD. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright   "Copyright © 2010, EGEN Software LTD."
#property link        "http://www.metaquotes.net"

#property indicator_separate_window

#property indicator_buffers   3
#property indicator_color1    Gray
#property indicator_color2    Green
#property indicator_color3    Red
#property indicator_width1    5
#property indicator_width2    5
#property indicator_width3    5
#property indicator_minimum   0

double FLAT[];
double BULL[];
double BEAR[];

bool TOTAL(int index)
{
  return(index<Bars-IndicatorCounted());
}

int CLOSE(int shift)
{
   if(Close[shift]>Close[shift+1]) return(+1);
   if(Close[shift]<Close[shift+1]) return(-1);   
   return(0);
}

int VOLUME(int shift)
{
   if(Volume[shift]>Volume[shift+1]) return(+1);// объем рос
   if(Volume[shift]<Volume[shift+1]) return(-1);// объем падал   
   return(0);
}

bool BULL(int shift)
{
   if(CLOSE(shift)>0) 
      return(VOLUME(shift)>0);
   return(false);
}

bool BEAR(int shift)
{
   if(CLOSE(shift)<0) 
      return(VOLUME(shift)<0);
   return(false);
}

void GURU(int shift)
{
   FLAT[shift]=EMPTY_VALUE;
   BULL[shift]=EMPTY_VALUE;
   BEAR[shift]=EMPTY_VALUE;   
   if(BULL(shift)) BULL[shift]=Volume[shift]; 
      else      
   if(BEAR(shift)) BEAR[shift]=Volume[shift]; 
      else 
   FLAT[shift]=Volume[shift];             
}

void start()
{
   for(int i=0; TOTAL(i); i++) GURU(i);
}

void init()
{
   IndicatorBuffers(4);
   SetIndexBuffer(0,FLAT);
   SetIndexStyle(0,DRAW_HISTOGRAM); 
   SetIndexBuffer(1,BULL);
   SetIndexStyle(1,DRAW_HISTOGRAM); 
   SetIndexBuffer(2,BEAR);
   SetIndexStyle(2,DRAW_HISTOGRAM); 
   IndicatorDigits(0);
   IndicatorShortName("iGuru");  
}
 
Do not be fooled by tick volumes (in particular iVolumes), it is not uncommon for iVolumes to show falling volumes, and the price goes up in small candles, after which the price "picks up speed", continuing the trend, and, accordingly, iVolumes shows an increase in volumes. As for symmetry, it doesn't take time into account, the probability is 50/50 at any given moment, but it is not 50/50 over an n-period. Edward Thorpe figured this out and made money on it.
 
denis_orlov:

No, not a typo, it's the same principle in the indicator:

Then I don't know...

Article, come on, what's the trick?! :)

 
Sart:

Forex strategies.

If 90% of traders using the most sophisticated strategies lose, then what is the point? It turns out that the best strategy is to trade in the opposite direction from the signals of any strategy? Regards - Sergey Sartakov.


I was told that it is as difficult to come up with a badly losing strategy as a very profitable one.

So trade against the trend. and you'll get your flush...
 
dmmikl86:
So trade against the trend. You'll get your sinker...
So, can I give you an example? I want it to go down fast!
 
MetaDriver:
Can I give you an example? Just a quick flush!

To drain quickly, you need to close the open order immediately, the direction does not matter.
 
MetaDriver:
If you do not know how to do it, you may go back to the market.


I can tell you to earn quickly, not to lose ;)

ZS: very often on all TFs within the day the trend indicators line up in the same direction - do not believe the indicators and enter against their signals, often at the close of the hour bar this situation happens