Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

 
 
Thread Tools
 
Old 03-23-2007, 11:54 PM
Senior Member
 
Join Date: Oct 2005
Posts: 454
Perky is on a distinguished road
I read with diamani when green line is below the grey line dont trade

for me its easier to make the grey line no colour

but and dont trade on yellow line but i dont know if ill use it

I mean the point of volatility in the bi polar excercise it to not trade when there is alot of volatility
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 04:48 AM
Senior Member
 
Join Date: Oct 2005
Posts: 454
Perky is on a distinguished road
something very very strange in backtesting
I am now getting a total loss on exactly the same settings?????


ive even redownloaded the expert posted here

I have a feeling that global variables are being kept from other settings??
tho I dont think that can happen
ive even rebooted
hmmmm
something smells!!!1
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:09 AM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
Quote:
Originally Posted by Perky
something very very strange in backtesting
I am now getting a total loss on exactly the same settings?????


ive even redownloaded the expert posted here

I have a feeling that global variables are being kept from other settings??
tho I dont think that can happen
ive even rebooted
hmmmm
something smells!!!1
what time frame? and broker? and what tick data?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:19 AM
Senior Member
 
Join Date: Oct 2005
Posts: 454
Perky is on a distinguished road
GOBLIN found the problem and for future testers !!!!
very dangerous
it was the global variables!!!!!!

you need to be in the expert panel and press F3 key and delete them all!!!!

this is such a dangerous thing!!!


if you change amounts and variables it will affect future backtests!!!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:26 AM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
Quote:
Originally Posted by Perky
GOBLIN found the problem and for future testers !!!!
very dangerous
it was the global variables!!!!!!

you need to be in the expert panel and press F3 key and delete them all!!!!

this is such a dangerous thing!!!


if you change amounts and variables it will affect future backtests!!!!!!
HUH?...WHat do you mean? what experts panel?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:28 AM
bluto's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 633
bluto is an unknown quantity at this point
Quote:
Originally Posted by Perky
GOBLIN found the problem and for future testers !!!!
very dangerous
it was the global variables!!!!!!

you need to be in the expert panel and press F3 key and delete them all!!!!

this is such a dangerous thing!!!


if you change amounts and variables it will affect future backtests!!!!!!
Goblin doesn't use global variables. At least not the versions I developed.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:41 AM
Senior Member
 
Join Date: Oct 2005
Posts: 454
Perky is on a distinguished road
ok just letting everyone know how dangerous they can be


i think ill take them out
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 05:43 AM
bluto's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 633
bluto is an unknown quantity at this point
Quote:
Originally Posted by Perky
ok just letting everyone know how dangerous they can be


i think ill take them out
What are the global variables in question and how are they manifesting themselves as a source of trouble with Goblin?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 06:04 AM
Senior Member
 
Join Date: Oct 2005
Posts: 454
Perky is on a distinguished road
Quote:
Originally Posted by bluto
What are the global variables in question and how are they manifesting themselves as a source of trouble with Goblin?

they are in hybrid versions
// Specify a name for the global variable that tracks gravy profit.
OrigBal = AccountNumber()+"_"+Symbol()+"_"+Period()+"_OrigBa l";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(OrigBal)) GlobalVariableSet(OrigBal, AccountBalance());
// Set the value.
valOrigBal = GlobalVariableGet(OrigBal);
// Specify a name for the global Equity flag variable.
EquityFlag = AccountNumber()+"_"+Symbol()+"_"+Period()+"_Equity Flag";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(EquityFlag)) GlobalVariableSet(EquityFlag, 0);
// Get a value.
valEquityFlag = GlobalVariableGet(EquityFlag);
// Specify a name for the global variable that tracks Gravy profit.
GravyProfit = AccountNumber()+"_"+Symbol()+"_"+Period()+"_GravyP rofit";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(GravyProfit)) GlobalVariableSet(GravyProfit, 0.0);
// Get a value.
valGravyProfit = GlobalVariableGet(GravyProfit);
// Specify a name for the global variable that tracks the current balance.
CurrBalance = AccountNumber()+"_"+Symbol()+"_"+Period()+"_CurrBa lance";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(CurrBalance)) GlobalVariableSet(CurrBalance, 0.0);
// Get a value.
valCurrBalance = GlobalVariableGet(CurrBalance);


and i have found when I was testing Moneymangement i changed my starting value to 100,000 then 1,000,000 and ran the backtest then changed back
the results were so false as to be scarey..

after deleteing globals using F3 key it was back to normal

im not saying your version is wrong Bluto im warning people using hybrids that this can happen
and these backtests can affect the expert that is running live if on the same account number
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 
Old 03-25-2007, 06:15 AM
bluto's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 633
bluto is an unknown quantity at this point
Quote:
Originally Posted by Perky
they are in hybrid versions
// Specify a name for the global variable that tracks gravy profit.
OrigBal = AccountNumber()+"_"+Symbol()+"_"+Period()+"_OrigBa l";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(OrigBal)) GlobalVariableSet(OrigBal, AccountBalance());
// Set the value.
valOrigBal = GlobalVariableGet(OrigBal);
// Specify a name for the global Equity flag variable.
EquityFlag = AccountNumber()+"_"+Symbol()+"_"+Period()+"_Equity Flag";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(EquityFlag)) GlobalVariableSet(EquityFlag, 0);
// Get a value.
valEquityFlag = GlobalVariableGet(EquityFlag);
// Specify a name for the global variable that tracks Gravy profit.
GravyProfit = AccountNumber()+"_"+Symbol()+"_"+Period()+"_GravyP rofit";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(GravyProfit)) GlobalVariableSet(GravyProfit, 0.0);
// Get a value.
valGravyProfit = GlobalVariableGet(GravyProfit);
// Specify a name for the global variable that tracks the current balance.
CurrBalance = AccountNumber()+"_"+Symbol()+"_"+Period()+"_CurrBa lance";
// Define the variable if it doesn't already exist.
if (!GlobalVariableCheck(CurrBalance)) GlobalVariableSet(CurrBalance, 0.0);
// Get a value.
valCurrBalance = GlobalVariableGet(CurrBalance);


and i have found when I was testing Moneymangement i changed my starting value to 100,000 then 1,000,000 and ran the backtest then changed back
the results were so false as to be scarey..

after deleteing globals using F3 key it was back to normal

im not saying your version is wrong Bluto im warning people using hybrids that this can happen
and these backtests can affect the expert that is running live if on the same account number
Perky - OK, I think these are related to the mods that "autofx" added awhile back. You must have the "mod H" version. Maybe.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
 

Bookmarks

Tags
expert goblin, goblin, goblin bipolar, goblin bipolar ea, Goblin Bipolar Edition, goblin expert advisor, Turbo_JMA
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
dose it posible to creat any function of "mql code" posting in this forum? phoenix Metatrader Programming 23 09-23-2009 04:10 PM
Here's the new "Goblin" ea...little brother to Predator bluto Expert Advisors - Metatrader 4 984 12-31-2008 10:03 PM
How to "teach" and to use the AI ("neuron") EA? danil Suggestions for Trading Systems 5 07-15-2008 05:26 PM
Goblin Bipolar mod H autofx Expert Advisors - Metatrader 4 182 05-22-2007 04:53 AM


All times are GMT. The time now is 05:57 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.