JPS1
JPS1
Friends

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

JPS1
Added topic Can I use Includes to Import EA Data via Web Site/Web Server?
Any one know if this is possible? I want to create EA with only partial data. The rest of the EA's data will be imported using includes of file located on web site. The idea is to try and protect the EA source code. Thanks, Jon
JPS1
Added topic How To Retrieve Object "String Text" ?
ObjectSetText ( " text_object " , " Hello " , 10 , " Arial " , Red ) ; Using ObjectGet , I can retrieve the ObjectSetText string name: "text_object" How can I retrieve or return the words or value for the string text "Hello"
JPS1
Added topic Help Creating MTF EMA
I'm trying to build an indicator that displays the Period 1 daily open price on a 4 HOUR chart. I've tried the following, but none of them work correctly iOpen ( " GBPJPY " , PERIOD_D1 , i ) ; iMA("GBPJPY",PERIOD_D1,1,0,MODE_EMA,PRICE_OPEN,i); The
JPS1
Added topic Help modifying Highest profit orders only...thanks!
Hi. My EA places approx 10 buy and 10 sell orders at different intervals. Many times they exist together as open orders. I'm looking for code to modify the stop loss for only the order that is the LARGEST in profit in relation to how many orders are
JPS1
Added topic Pending Orders "LOT SIZE" on chart coments
I can't seem to get the chart comments to respond to what the pending orders lot sizes are. Any idea what I could be doing wrong? Thanks for the help. Here is my code: double pendLotshort , pendLotlong ; pendLotshort = 0 ; pendLotlong = 0 ; for ( i =
JPS1
Added topic Execute Orders Instantly with EA
Seems most EAs have to wait for a tick or two to occur before placing pending orders . Is there a way to code around that so pending orders are executed instantly...regardless of whether the market brings in a new tick or not? 
JPS1
Added topic How To Reset Closed Profits to Zero?
I am using some functions to calculate my Closed Profits. Once closed profits = X, I am having the EA shut down all orders and restart. How can I get the closed profits to reset itself to 0? I have tried a few methods, such as getting the EA to reset
JPS1
Added topic Help Retrieving Trade History Info
Hi. I am trying to pull up the sum in dollars of all closed orders in history that were from this single EA. After #property link I have extern string EAName = "MyEaName"; double closedProfit = 0; somewhere after int init() I have int
12