sunshineh
sunshineh
sunshineh
Added topic Indicator writing the gap-high on the chart
Hi, I want to program an indicator thats writes the gap-high every day on the chart. But it only works on D1 any there is the statement missing, that the result should only be shown on the first candle of the day. Another point is that the result is
sunshineh
Added topic Problems with using some indicators for an expert advisor
Hi, I have a few indicators which I want to use for an expert advisor. The indicators are having 4 buffers. Buffer0 down-arrow Buffer1 up-arrow Buffer 2 small-down-point Buffer 3 small-up-point Between the points and the arrows I am drawing Trend
sunshineh
Added topic Ger30 MA, Pivot ... Different Values because of the Close Value
Hi, when I use indicators for the Ger30 than the Pivot and the MA are calculating with the Close-Value at 22 o'clock. How can I calculate them with the values at 17:30 p.m.? What do I have to write instead of Close[i+1]
sunshineh
Added topic ZigZag Call from another indicator
Hi, I want to use and draw in my indicator the ZigZag indicator . I defined is as the following code shows: init() {    IndicatorBuffers ( 1 );       SetIndexBuffer ( 0 ,TF1_Buffer);    SetIndexStyle ( 0
sunshineh
Added topic MTF-Indicator from the past to currenttime
Hi, I've always programmed my mtf-indicator with this loop:    limit= Bars -counted_bars;    for (i= 0 ,y= 0 ;i<limit;i++)    {    if (Time[i]<TimeArray[y]) y++;    ....    } but know
sunshineh
Added topic Chart-Shift of an indicator
Hi, I have programmed an indicator and wrote a few labels on the right. Can I program a definite chart shift for my indicator
sunshineh
Added topic Compining temporäre variable names with integer
Hi, I have declared a lot of variables like int Varname1 = 5; int Varname2 = 10; int Varname3 = ... Now I tried to convert my code with a for-loop automatically. I tried this, but it doesn't work: for (z= 1 ; z< 5 ;z++) { var = pips2dbl *
sunshineh
Added topic Fastest exchange between difference Metatrader Accounts
Hi, has anybody experiences, what is the fastest way of exchanging informations between two different metatrader accounts?? I think through a file it is too slow. The account are on the same pc
sunshineh
Added topic Can't open hst-File
Hi, I have got a hst-File from a friend with quotes from metatrader. But unfortunately I can't open it with my metatrader and I also can't open it with wordpad or notepad or... My friend is in holiday. Is there any posibillity to get the quotes from
sunshineh
Added topic Same Indicator with different results
Hi, I have an indicator as ex4. I put this indicator with the standard settings on my EURUSD H1 Chart and get only one signal the last three month. But the same indicator with the same setting shows about 80 signals in the last three month. The
sunshineh
Added topic MoneyManagement and round off
Hi, I have calculated my lotposition and if the result is f.e. 0.047 Lot, I want to round it of to 0.04. This systematic should work on a micro- and a minilot account
sunshineh
Added topic Is it posible: #include
Hi, how is it possible to include the "windows.h" bib
sunshineh
Added topic Closing only a part of a existing position
Hi, I can't find the possibility to close only the half of my position. With OrderModify() I can only modify the hole position
sunshineh
Added topic Scaling with different indicators
Hi, I put two indicators bellow a EURUSD-Chart in seperate Indicator-Window. Indicator 1 has a scaling of 0 and + 100 over the complete vertical indicator field. Indicator 2 has a scaling from -0.00456 to 0.003322 (also over the complete vertical
sunshineh
Added topic Trading hours of a contract/underlying in mql4
Hi, I want to get the trading hours of a contract like from 8am-22pm. I saw, that I can get it with mql5 " SymbolInfoSessionTrade ". Is there anything link that im mql4 possible
sunshineh
Added topic Silly question about prices and spread
Hi when I buy an order for the ask price and sell it for the bid price, do I have to add the spread to go EXACTLY x pips?? I thought I payed the cost with the difference of the ask price and the bid price
sunshineh
Added topic Programming an EA with an indicator which uses "Previous Indicator's Data"
Hi, I have programmed the following code: double MA_Buffer[ 300 ]; double RSI_on_MA[ 300 ]; void CalcRSI() { int     i,limit= ArraySize (MA_Buffer); ArraySetAsSeries (MA_Buffer,true); for (i= 0 ; i<limit; i++)   
sunshineh
Added topic VLine without label
Hi, is there any possibility that in the timeline the time of a vertical line isn't shown: ObjectCreate ( "test" , OBJ_VLINE , 0 ,Time[i], 0 ); ObjectSet (name, OBJPROP_COLOR , Gray );   Because I have programmed that every 4 hours in my
sunshineh
Added topic Saving Quotes on another folder than the "experts/files"
Hi, I want to program an EA which is writing and reading from a csv-File from drive D:\\ I am using the kernel32.dll and can write on D:\\, but not read at the same time. Everything works with the metatrader-file functions and the
sunshineh
Added topic Automatically checking a csv-quote file
I am saving my quotes in an csv-file. Does anybody knows a way of checking the completeness of the data automatically? The qoutes are saved like this: 2011.09.29 17:57 5646 5651 5646 5648 I think I can do this with reading and controlling the file