Who wants a strategy? Lots and for free) - page 16

 
Zet1972 >> :

well then why do you give people on the forum a sniff - warn them right away that the shish .... or else we're happy here...


Man, try reading slowly.

2 times, 3, 10

Try putting a smiley face after "sell"...

If you want to buy, then of course I'll sell. But I'm not going to sell it now.

 
Sart >> :

We don't whish ! You tear too low ...as compared with Popov's product...


A friend of mine also switches to English when he has a drink, but he lives in Maryland. And they also write that there is a crisis in Dnipropetrovsk!

People have enough money for good vodka...

to Mischek

I was angry too, but I think Reshetov has been married for a long time and he'll figure it out.

 

I wanted to try to code an FxSB strategy in mq4.

I have faced with the fact that there is no description of indicators.

In particular Pivot Points and Money Flow (not to be confused with Money Flow Index).

The strategy works on eurusd60. Pivot points on every hour

(set and look at the Indicator Chart window).

Pivot Points found on the internet give lines for the day (24 hours).

So what are these Pivot Points and Money Flow in FxSB?

I wish I could find the formulas...

 
voltair >> :

I wanted to try to code an FxSB strategy in mq4.

I have faced with the fact that there is no description of indicators.

In particular Pivot Points and Money Flow (not to be confused with Money Flow Index).

The strategy works on eurusd60. Pivot points on every hour

(set and look at the Indicator Chart window).

Pivot Points found on the internet give lines for the day (24 hours).

So what are these Pivot Points and Money Flow in FxSB?

I wish I could find formulas...


See source code: Indicators' source code

 
Reshetov писал(а) >>

See source code: Indicators' source code

Ah, there they are! >> Much obliged!

 

FSB v2.8 and the earlier calculate Pivot Points for previous bars.

From next version FSB v2.8.1.3 Beta it can calculate PP for previous bar or for previous day (default).

 

I downloaded Forex Strategy Builder today. I downloaded Framework 3.5 and it works. Interesting software, I will try it at the weekend :)

 

I've written ATR MA Oscillator and shared it with you, but I see that no one uses it but me. I cannot deal with Detrended Oscillator. I can't figure out where the error is:

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 DodgerBlue
#property indicator_color2 Red
//----
extern int ma1_prd = 35;
extern int ma2_prd = 30;
extern int CountBars = 2000;

double dpo[];
double do[];

int init()
{
string short_name;
SetIndexStyle(0, DRAW_LINE);
SetIndexBuffer(0, do);
SetIndexBuffer(1, dpo);
short_name = "Detrended oscillator("+ma1_prd+", "+ma2_prd+")";
IndicatorShortName(short_name);
SetIndexLabel(0, short_name);
if(CountBars >= Bars)
CountBars = Bars;
SetIndexDrawBegin(0, Bars - CountBars + ma1_prd + 1);
return(0);
}
int start()
{
int i, counted_bars=IndicatorCounted();
double t_prd;

if(Bars <= ma1_prd)
return(0);

if(counted_bars < ma1_prd)
{
for(i = 1; i <= ma1_prd; i++)
dpo[countBars-i] = 0.0;
}

i = CountBars - ma1_prd - 1;
t_prd = ma1_prd / 2 + 1;

while(i >= 0)
{
dpo[i] = Close[i] - iMA(NULL,0,ma1_prd, t_prd,MODE_LWMA,PRICE_MEDIAN,i);
do[i] = iMAOnArray(dpo,Bars,ma2_prd,0,MODE_SMMA,i);
i--;
}
return(0);
}

 

Detrended Oscillator(13, 3) = MACD Signal Line(13, 1, 3)


Detrended Oscillator

MA1 period = 13

MA2 period = 3


MACD

Slow MA period = 13

Fast MA period = 1 (FastMA = Close)

Signal line period = 3



Detranded Oscillator = MA2(Close - MA1)

MACD Signal Line = MA3(FastMA - SlowMA)



................



ATR MA Oscillator = ATR - MA(ATR)

 
Thank you. Maybe someone can suggest EASE OF MOVEMENT too.
Reason: