View Single Post
  #1389 (permalink)  
Old 12-29-2007, 11:34 PM
TheRumpledOne's Avatar
TheRumpledOne TheRumpledOne is offline
Banned
 
Join Date: Nov 2006
Posts: 802
TheRumpledOne is an unknown quantity at this point


I fixed it so it would compile but you have some "clean up" work to do. I am not sure what you really want to do.

You error was in the lines:


if (MFI_M1 > 80){ MFI_M1 = "-"; color_M1 = Green;}

MFI_M1 is a double and you were assigning a string to it. I changed it to"

if (MFI_M1 > 80){ MFI_StrM1 = "-"; color_M1 = Green;}

To fix the error.

Do you have the ORIGINAL SIGNAL BAR source code?

If so, please email a copy to scottybrickman at gmail dot com.

Thanks.
Attached Files
File Type: mq4 _Signal_Bars_MFI.mq4 (37.9 KB, 161 views)
Reply With Quote