Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

Posted

i try to backtest it

on journal :

2010.12.03 04:36:03 2010.01.04 01:00 TurboPipSniper_Adv EURUSD,M15: Alert: Run TPS Advance with regular version.

 

what error is it?

Posted

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.

Posted
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);

Posted
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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...