Jump to content

{REQ} Turbo Pip Snipner


Recommended Posts

Be careful everyone.

This is SCAM.

It controls backtest result by dll(by using trading date).

 

Key point is gi_268.

gi_268 become true only for backtest(i.e IsTesting()=true).

And gi_268 become false when real or demo trade(i.e IsTesting()=false).

This gi_268 is concerned with TurboPipSniper.dll.

 

I check backtest both gi_268= true or false.

gi_268= true is profitable(Backtest).

gi_268= false is unprofitable(real or demo trading)

It's quite different.

Link to comment
Share on other sites

Be careful everyone.

This is SCAM.

It controls backtest result by dll(by using trading date).

 

Key point is gi_268.

gi_268 become true only for backtest(i.e IsTesting()=true).

And gi_268 become false when real or demo trade(i.e IsTesting()=false).

This gi_268 is concerned with TurboPipSniper.dll.

 

I check backtest both gi_268= true or false.

gi_268= true is profitable(Backtest).

gi_268= false is unprofitable(real or demo trading)

It's quite different.

 

hi yuuchi, you may be correct but gi_268 is used only for ATR indicator....if it is false or real/demo, ATR will be using 1hr timeframe otherwise Daily timeframe will be used...

 

having said that and considering what you have noticed, reckon it is better to use Daily timeframe for ATR to make it more profitable.

 

code below for your reference...

 

int g_timeframe_288 = PERIOD_D1;

if (gi_268 == FALSE) g_timeframe_288 = 60;

g_iatr_280 = iATR(Symbol(), g_timeframe_288, atr_period, atr_shift);

Link to comment
Share on other sites

hi yuuchi, you may be correct but gi_268 is used only for ATR indicator....if it is false or real/demo, ATR will be using 1hr timeframe otherwise Daily timeframe will be used...

 

having said that and considering what you have noticed, reckon it is better to use Daily timeframe for ATR to make it more profitable.

 

code below for your reference...

 

int g_timeframe_288 = PERIOD_D1;

if (gi_268 == FALSE) g_timeframe_288 = 60;

g_iatr_280 = iATR(Symbol(), g_timeframe_288, atr_period, atr_shift);

 

Thank you, richdad.

Yes, your point is right as one of points gi_268 concern.

But please check more. You can find another point.

I think this line is big problem rather than ATR timeframe.

int li_0 = buyprob(gi_260, Day(), Month(), Year(), gi_268);

buyprob is function of TurboPipSniper.dll.

 

As you pointed about ATR timeframe, I tried to check this point.

I added gi_268 == FALSE at the first line of start().

I also changed this line "if (gi_268 == FALSE) g_timeframe_288 = 60" to "if (gi_268 == FALSE) g_timeframe_288 = PERIOD_D1".

I think this can test real/demo and ATR timeframe = PERIOD_D1 situation.

The result was terrible and unprofitable.

If you can please test this.

 

I think they control backtest result by date.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...