Forex



Go Back   Forex Trading > Discussion Areas > Metatrader 4






Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
Thread Tools Display Modes
  #21 (permalink)  
Old 10-31-2006, 03:09 AM
Eaglehawk's Avatar
Senior Member
 
Join Date: Jun 2006
Posts: 141
Eaglehawk is on a distinguished road
Quote:
Originally Posted by iscuba11
I am confused. Why can I not make it into a scomment so I can watch the value change on the screen??

Dave
<><<<
you said you wanted to determine wether or not it was giving you the input you want, the print function is visible in the journal section, it is what i would do. to use the scomment, which you can, all you have to do is define the scomment, which i already see done. correct me if i'm wrong, but your trying to have the computer tell you if the price is going up or down right?

the reason i would reccomend using the print is because if it isn't leaving a comment at the top of the screen, i can only guess a handfull of problems. one that you haven't defined scomment as a comment, another one might be that your custom indicator being used doesn't compile, there could be a multiple number of reasons. if you can actually get the ea onto the screen and see it, that only leaves a few guesses to what the problem may be, print is what i use to help me in that kind of situation.
__________________
"One's ability to accomplish his or her goals is limited only by the ingenuity of how one uses what he or she already knows."- Eaglehawk
REMEMBER,
"Genius is nothing but a greater aptitude for patience." –Benjamin Franklin

____________________________________

Have a simple ea you just can't figure out how to code??? Odds are you can make it here. Just remember to push complete when you're done, NOT SAVE!!!

http://sufx.core.t3-ism.net/ExpertAdvisorBuilder
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!
Reply With Quote
  #22 (permalink)  
Old 10-31-2006, 03:46 AM
iscuba11's Avatar
Senior Member
 
Join Date: May 2006
Location: Houston
Posts: 398
iscuba11 is on a distinguished road
Smile

Quote:
Originally Posted by firedave
Hi Dave, did you try to declare sw_buy and sw_sell before start() so the variable could be use on function ? Hope this help

Yes I did firedave.
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!
Reply With Quote
  #23 (permalink)  
Old 10-31-2006, 04:23 AM
cubesteak's Avatar
Senior Member
 
Join Date: Jul 2006
Location: Southern California
Posts: 160
cubesteak is on a distinguished road
Quote:
Originally Posted by iscuba11
I am confused. Why can I not make it into a scomment so I can watch the value change on the screen??

Dave
<><<<
Hi Dave,

I think the point of the message was to isolate the components to see if

sw_buy=iCustom(NULL,0,"Solar Wind-a",period,1,0);

is actually being set to something. BUT, as I reread your message it looks like you aren't having PROBLEMS getting it to show up, but rather are just asking for coding help to add the information. I think we all jumped to the conclusion that you had added it, but it wasn't working.

Anyway, to add it to the code, just do:

Code:
void subPrintDetails() 
{ 
   string sComment   = ""; 
   string sp         = "----------------------------------------\n"; 
   string NL         = "\n"; 
    string sDirection = ""; 
    if (sw_buy_cur>0) sDirection="UP"; 
    if (sw_sell_cur<0) sDirection="DOWN"; 
   sComment = "SOLAR WIND EA" + NL; 
   sComment = sComment + "TakeProfit=" + DoubleToStr(TakeProfit,0) + " | "; 
   sComment = sComment + "TrailingStop=" + DoubleToStr(TrailingStop,0) + " | "; 
   sComment = sComment + "StopLoss=" + DoubleToStr(StopLoss,0) + NL;  
   sComment = sComment + sp; 
   sComment = sComment + "Solar Wind Direction=" + sDirection + " | ";    
   sComment = sComment + "Lots=" + DoubleToStr(Ilo,2) + " | "; 
   sComment = sComment + "LastTrade=" + DoubleToStr(TradeLast,0) + " | ";  
   sComment = sComment + "MM=" + DoubleToStr(mm,0) + " | "; 
   sComment = sComment + "Risk=" + DoubleToStr(Risk,0) + "%" + NL; 
   sComment = sComment + "Trade=" + DoubleToStr((CntOrd(OP_BUY,MagicNumber)+CntOrd(OP_SELL,MagicNumber)),0) + NL;  
   sComment = sComment + "SW_Buy=" + sw_buy + NL;
   sComment = sComment + sp;   
   Comment(sComment); 
}  
Does that help?

Cheers,
CS
__________________

Join the MultiBroker M1 and TICK Data Bank Project

Imagine 90-99% modeling quality in MT4 back testing with free data from your broker!
Come see our current list of covered brokers.
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!
Reply With Quote
  #24 (permalink)  
Old 11-01-2006, 01:51 AM
iscuba11's Avatar
Senior Member
 
Join Date: May 2006
Location: Houston
Posts: 398
iscuba11 is on a distinguished road
Smile

Thank You Cubesteak. And also Boo!

Dave
<><<<
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!
Reply With Quote
  #25 (permalink)  
Old 03-19-2007, 01:29 AM
Junior Member
 
Join Date: Apr 2006
Posts: 17
slam is on a distinguished road
Solar Wind Ea

Hi all,

Does anyone know if an EA has been created using the solar wind indicator? I am simply looking for one that will buy (above 0.00) and sell (below 0.00) based on this indicator that has a trailing stop option.

If anyone knows if this has been created, or is willing to create it, it would be much appreciated.

Thanks in advance.
Attached Images
File Type: gif solarwind.gif (14.4 KB, 1316 views)
Attached Files
File Type: mq4 Solar Wind.mq4 (2.0 KB, 296 views)
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!
Reply With Quote
  #26 (permalink)  
Old 03-19-2007, 07:31 PM
ut2DaMax's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 130
ut2DaMax is on a distinguished road
abd don't forget .... ADXcrosses

ADXcrosses ....

Is a good one to add to the mix here. Leaves dots for the early moves and works very well with some of the other indicators you have listed here. IMO

Get it free here:
http://codebase.mql4.com/619
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!
Reply With Quote
  #27 (permalink)  
Old 11-03-2007, 02:33 AM
//ruzgar//'s Avatar
Member
 
Join Date: Nov 2007
Posts: 45
//ruzgar// is on a distinguished road
solar wind 10-20-30




download

Solar Wind.mq4 ... at uploaded.to - Free File Hosting, Free Image Hosting, Free Music Hosting, Free Video Hosting, ...
__________________
Bulut KARLI
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!
Reply With Quote
  #28 (permalink)  
Old 11-03-2007, 04:37 AM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
QUOTE=//ruzgar//;
did you fixed redrawing?
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!
Reply With Quote
  #29 (permalink)  
Old 11-03-2007, 08:00 AM
nittany1's Avatar
Senior Member
 
Join Date: Dec 2006
Location: Sarasota, FL
Posts: 196
nittany1 is on a distinguished road
I am aware of the repainting thing with Solar Wind. I haven't looked into it although maybe that can't be fixed. I did add something very small to it in case anyone wants to use it, I added the currency it's attached to and also the period displayed in the short name.
Attached Images
File Type: gif screen-usdcad-m30.gif (31.5 KB, 1213 views)
Attached Files
File Type: mq4 Solar Wind mod1.mq4 (2.1 KB, 300 views)
__________________
The best things in life come from open source development.
Myspace Facebook My Indicators: Trade Assistant Trend Friend ToR CCI Helper
Holder of US Patent 6,774,788
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!
Reply With Quote
  #30 (permalink)  
Old 11-03-2007, 06:32 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
Ha! thanks, Nit!
Great, there is parralell developement in zor v.1 ruzgar thread
check it out
crosslink:
http://www.forex-tsd.com/162262-post29.html

can't wait untill market open 4 real-time test

Last edited by fxbs; 11-03-2007 at 07:11 PM.
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!
Reply With Quote
Reply

Bookmarks

Tags
awesome, fisher m11, jma slope, solar, Solar Wind, solar wind indicator, fisher m11 indicator, solar wind forex indicator, jma slope repaint, solar wind forex, jmaslope.mq4, solar wind mq4, solarwind, forex

Thread Tools
Display Modes

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
solar dazminder Indicators - Metatrader 4 3 04-05-2006 05:50 PM


All times are GMT. The time now is 11:29 PM.



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