- Search Crypto Craft
- tigpips replied Aug 25, 2011
You need a counter variable as well as logic function to handle the part where it determines that there are 3 arrows drawn for 3 consecutive bars. Example if Bar 1 + Bar 2 has arrows detected, but Bar 3 has no arrows detected = reset counter back to ...
I will code your EAs and Indicators for no charge
- tigpips replied Aug 24, 2011
Check the "Experts" tab or the "Journal" tab to see if there are any errors. See if you can backtest your expert advisors. Usually if you can conduct a backtest on them, they will work on demo/live forward testing.
I will code your EAs and Indicators for no charge
- tigpips replied Aug 23, 2011
lol which broker is that?
I will code your EAs and Indicators for no charge
- tigpips replied Aug 22, 2011
lol I forgot about that, sorry I am more used to black backgrounds haha. I have edited the pip display precision value to 1, so that it will reflect the values more accurately for you. For example, instead of seeing 4 pips on your chart, you will ...
Looking for a profit indicator
- tigpips replied Aug 20, 2011
url 1) Download this indicator, login to a MT4 broker with access to S&P500 charts. For example, Alpari UK. 2) Attach the "Will-Spread .mq4" to your EURUSD H1 chart. 3) Edit "SecondMarket" parameter to "_US500" instead of its default value "GOLD". ...
I will code your EAs and Indicators for no charge
- tigpips replied Aug 20, 2011
Here is an indicator you can use. This indicator is done by S.B.T. Here's the post url . This will only work on brokers who have the S&P 500 symbol. I'm using Alpari UK demo for this illustration. Step By Step Guide 1) Click on url 2) Download ...
S&P Layover Indicator?
- tigpips replied Aug 19, 2011
Hi all, here is the Support and Resistance (Barry) indicator with the added alerts. I have added a few more features as well. The core logic for the alert routine is taken from hanover. Here is a short explanation of what the new variables do: ...
Support and Resistance (Barry) indicator
- tigpips replied Aug 19, 2011
Hi FxTraderKing, I have made the amendments, seems like what you want is mostly just an inputbox area to key in the values prior executing the script commands. In addition, i'm not sure if u're using hotkeys for your trading environment. Just in ...
Script to Reverse All Buy & All Sell
- tigpips replied Aug 19, 2011
I think coda is right, I tried using FileOpen() and then use a handle to determine whether the file exists or not, but it only works for "Metatrader 4/experts/ directory" and its sub-directories. A c++ dll would be able to handle this, or you can ...
Correct Way: Check Soundfile exist
- tigpips replied Aug 18, 2011
Hi price, Here's your version. To turn it off, double click on the label then move it to any other position. And it will say on screen "Alarm Off" in red. Do the same again to toggle it back on.
Continuous alarm that can be turned off
- tigpips replied Aug 18, 2011
Are your vertical lines plotted across the screen? or are they like mini vertical lines? Mini vertical lines as in they have a specific length plotted at a specific coordinate or specific X no. of bars from the current bar.
Keep plotted lines on TF change?
- tigpips replied Aug 17, 2011
You can try adding this at the end: if(total_buylots<total_selllots) { lotdifference = total_selllots - total_buylots; //Check difference in lots, if buylots is smaller then we will buy t = ...
How to make 1 trade so sell lots = buy lots?
- tigpips replied Aug 16, 2011
This is my first doing something like this, but I just gave it a shot anyway. Btw this is an EA. There are 2 extern variables: playsound1 When this is set to true, it will play the alert sound as indicated by "soundfilename1" repeatedly until the ...
Continuous alarm that can be turned off
- tigpips replied Aug 16, 2011
This seems pretty interesting and fun

Continuous alarm that can be turned off
- tigpips replied Aug 16, 2011
Thanks for pointing that out vardarski, I apologize for misleading others as well as to other fellow coders.
Martin EA
- tigpips replied Aug 15, 2011
Yea you're right, the problem lies in the coding. But unfortunately, because it is decompiled code, so I can't post the solution. I'm sorry.
Martin EA
- tigpips replied Aug 15, 2011
Hmm... I have added some variables to the script, see if this is what you want extern bool CloseAndReverse = true; extern bool ECN = true; extern double Lots = 0.01; extern int Takeprofit = 100; extern int Stoploss = 100; extern string ...
Script to Reverse All Buy & All Sell