Larry
Larry
Friends

Add friends via their profile or user search and you will be able to see if they are online

Larry
Added topic Your opinion please
I have this EA program that I purchased. Have been running a test on it since about 5/26/09, so far it looks good, My Stats report , do you think there is enough testing on this to accept it as usable in live trading or should I run it longer before
Larry
Added topic I need a good history file for EURUSd
do you have a good history file I can use in my back testing? For some reason what I have keeps getting corrupted. I try to download new history but it always says it up to date, but then I get screwed up results. I just need a history file I can
Larry
Added topic Using the back tester
I have been back testing an EA I have been working on. I have been getting some good results as you can see from the test below. I cannot find any losers, and there are only one maybe two trades open when I get to the end of the run. Notice the steep
Larry
Added topic Buy/Sell method handles any broker
does anyone have a buy and sell method that can handle any issue that any broker may throw at you? I ask this because I have found that there are so many ways a broker can kill a trade by requiring that you do things like take a trade then modify it
Larry
Added topic Formating text of a comment
I would like to change the size, fonts, color of a comment, is it possible? Please show me how
Larry
Added topic Time zone differences
I have been drilling every where to find a solution to this... Scenario: I want to have user input that will provide a start time and end time for a range of time. Then get the GMT for both. Next I need to get the server time and get the GMT for this
Larry
Added topic Fixed maximum
I have created an indicator, but I want to uncheck the indicators Fixed Maximum property . Currently it is enabled and I would like to have it disabled. Any ideas
Larry
Added topic comparing candles
I am thinking about creating a method that just compares 2 candles passed to it. These candles may be history candles or current candle. I just want to be able to compare them for higher highs/higher lows, lower highs/lower lows, engulfing (high of
Larry
Added topic Charting for analysis
I was wondering if anyone has done anything like this. Goal: To visually chart the on going balance, equity, profit, and open P/L of an account onto a seperate security chart. So on each tick, an update occurs, when done the security chart will show
Larry
Added topic Any successful automations?
I would like to ask if anyone has successful EA's that generate a 20% or better. Trying to find a good existing EA is like looking for a needle in a haystack. I would like to see a listing of EA's that I can test out on back testing and demo runs. If
Larry
Added topic Calculating my stops and takeprofit for buy or sell against any currency pair
As an old stock trader, I would set my stops at 5% below trade entry and TakeProfit 20% above trade entry. I am attampting to do something like this here, but my numbers are not coming out right. I want to do this for buys and sells and on any
Larry
Added topic Error 129
Even though I have useddd refreshrates it is still getting the error and not processing the close for (int i = 0; i <= MyTotalOrders; i++) { if (OrderSelect(i, SELECT_BY_POS) == true) { if (OrderProfit() > TakeMoneyAt) {
Larry
Added topic 2 EAs, 2 same charts 1 account
I have a situation where I have found a good EA, but it does not set stop losses. So I built an EA that takes profits off the table and minimizes losses. The first EA enters the trades nicely so I want to keep using it. The second EA goes through the
Larry
Added topic Calculate break even point on a trade
Can I get some help with the formula for calculating the break even point on a transaction? I need to consider all currency pairs and both buy or sell trade. I know how to identify the currency and the buy or sell, but what is the code snippet for
Larry
Added topic M1 - each update is new tick y/n?
I am attempting to check on each update, if the ticker is new or old. I tried: if (RefreshRates()==false) { got old tick } else { Got new tick } Ran the EA. Always hits the got old tick, but fails on the got new tick. I am fairly new, but I am also a