- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Oct 21, 2013
I was going to answer your question, but then I noticed "I have a question for you experts." Well that rules me out
Scan through the open orders and only count the orders with the same OrderSymbol() as the pair you are checking for.I will code your EAs and Indicators for no charge
- Gumrai replied Oct 21, 2013
No, I am saying that if you also have an M1 chart open M1 history will auto update every tick, so there should not be any problems when you call iTime etc.
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
Not only that but ask3 is the ask price of "NZDUSD" and you are trying to open a GBPUSD trade with it. Will not stop it executing, but default size is 0.5 lots, but lotsize in the OrderSend is 1.0 Also both trades are buy orders, much easier to find ...
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 20, 2013
Good luck, hope that it goes well
If I can just draw your attention to another point that may affect the functioning of your code. You don't check for errors anywhere in your code. Error 4066 is very common when retrieving data from a timeframe ...Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
DrawLine1(White, iTime(NULL,1,1)); If you change the time for drawing the white line as above, then it will be drawn at the same place as your dotted line and I am sure that you don't want that. No, I am not 100% sure, as I said a few posts back ...
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
The dotted line is created by this piece of code ObjectCreate("mDivLine5"+Time[1], OBJ_VLINE, 0, 0, 0, 0, 0); ObjectSet("mDivLine5"+Time[1], OBJPROP_COLOR, Lime); ObjectSet("mDivLine5"+Time[1], OBJPROP_STYLE, STYLE_DOT); ...
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
Are you sure, M5, not M15?
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
You didn't answer my question
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 20, 2013
There are no types of PA. PA is PA, pure and simple. There are, however many different methods used to try to interpret PA to make a decision as to which way price is most likely to go.
Price Action made simple with Supply and Demand levels
- Gumrai replied Oct 20, 2013
I have looked through your code and although I cannot work out what you are trying to achieve, I may or may not have an explanation You posted a 1 minute chart in your first post. In this case it is normal to expect that the indicator has been ...
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 19, 2013
If you look at the 1st if condition if(((mStoredTimeBearish + mCheckingTime) < iTime(NULL, 0, 0))) can also be written as if(iTime(NULL, 0, 0) > mStoredTimeBearish + mCheckingTime ) to make it easier to compare so then compare the 1st and 3rd ...
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 19, 2013
I'm sorry, but I don't understand what you are saying or asking.
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 18, 2013
You reset mStoredTimeBearish in the first section of code if the conditions are met if(((mStoredTimeBearish + mCheckingTime) < iTime(NULL, 0, 0))) { if((iVolume(NULL, 0, 2) > (0.95*(iVolume(NULL, 0, iHighest(NULL, 0, MODE_VOLUME, mNoBackCheck, ...
Please Help - How to reset Variables in indicator
- Gumrai replied Oct 17, 2013
That is terrible! You need to have a win rate above 80% with that R:R. You need to keep an eye on other pairs. EURUSD has not had the nice moves lately. GBPUSD has had much better moves. Keep an eye on Gold. A lot of people don't like to trade Gold ...
Strategies to manage lower Market Volatility and PA
- Gumrai replied Oct 15, 2013
Seems an odd trendline to me, but as it does what you want, fair enough. Try this EDIT: I forgot to change the file name so you may want to rename it before putting it in the indicators folder
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 14, 2013
FXPro and Ava have unlimited demo accounts, but they don't have that many equities, I think just those listed in Dow Jones 30. GKFX trade a lot more equities, but I don't know if their demo accounts are unlimited or not. I have my live account with ...
Unlimited demo for equities
- Gumrai replied Oct 14, 2013
Thanks FerruFX, I wasn't sure and I have no open trades because of the slow market today, so couldn't check.
Opening & Closing arrow question
- Gumrai replied Oct 14, 2013
Firstly, I had no reason to tell you until you asked
2ndly, I don't think, but not sure that it works with open trades 
Opening & Closing arrow question
- Gumrai replied Oct 14, 2013
You can drag a trade from the terminal account history window onto the main chart and it will plot the arrows
Opening & Closing arrow question
- Gumrai replied Oct 14, 2013
What is the beginning of a time-frame?
can someone help me find a ranging EA, please!