<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DailyFX Forum - FXProgrammers</title>
		<link>http://forexforums.dailyfx.com</link>
		<description />
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 13:40:46 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forexforums.dailyfx.com/images/dfx2009/misc/rss.jpg</url>
			<title>DailyFX Forum - FXProgrammers</title>
			<link>http://forexforums.dailyfx.com</link>
		</image>
		<item>
			<title>Are there any built-in indicator functions?</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/117513-there-any-built-indicator-functions.html</link>
			<pubDate>Wed, 28 Oct 2009 00:17:24 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I couldn't find any indicator functions...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I couldn't find any indicator functions listed within the Order2Go Help, so I ended up coding my own e.g. Moving Average function; but I would now like to use other indicators. Prior to trying to code for them, have I missed anything in the help files?  Do any indicator functions exist?<br />
<br />
If someone could confirm this it would be appreciated, thanks.<br />
<br />
Regards,<br />
Stephen.</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>sad</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/117513-there-any-built-indicator-functions.html</guid>
		</item>
		<item>
			<title>CreateFixOrder in new version giving problem</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/111879-createfixorder-new-version-giving-problem.html</link>
			<pubDate>Fri, 16 Oct 2009 18:13:37 GMT</pubDate>
			<description>Hi, 
i m facing problem with CreateFixOrder ,...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
i m facing problem with CreateFixOrder , When i send order then i receive this message<br />
&quot;The Account with specified identifier is not found&quot;  and my order is not placed,parameters I m passing r <br />
<br />
CreateFixOrder(FIX_OPENMARKET,&quot;&quot;,0,0,&quot;&quot;,&quot;01051612&quot;  ,&quot;EUR/USD&quot;,true,10000,&quot;&quot;,&amp;vOrderID,&amp;vDealerInt);<br />
<br />
Plz note, Same above function i was using in old version of FXOrder2GO APIs and had no error but when i updated new version FXCMFXOrder2Go_073109 i get error. Plz any buddy can solve this ?</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>nasdaqtr</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/111879-createfixorder-new-version-giving-problem.html</guid>
		</item>
		<item>
			<title>Support for Multiple Logins to the same account</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/110336-support-multiple-logins-same-account.html</link>
			<pubDate>Wed, 14 Oct 2009 11:21:28 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I've been coding with the FXCM API now for...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I've been coding with the FXCM API now for several years without any major issues, but only just tried and noticed that it would appear that multiple/ simultaneous logins to the same username/account is not supported! Is that the case?<br />
<br />
NB: I've even tried the connection via two independent inet providers/routers to verify it's not a setting on my modem/router prevent this!<br />
<br />
i.e. I'm trying to run two instances of my program with different parameters/currency pairs, but the same login details. The programs logon onto my account at predetermined times; e.g. every 5mins (synchronised to align with a 5min chart). The call to e.g. 'oTradeDesk.Login' works in both instances, but then one fails to Verify may accountname as if the first instances has a lock on the 'Accounts' table (i.e. oTradeDesk.TablesManager.FindTable(&quot;Accounts&quot;)) and therefore when I loop through trying to find my AccountName and then obtain the AccountID &amp; account balances on the 2nd instance, it fails and never finds my AccountName!<br />
<br />
Any input would be appreciated, even to confirm this is not supported to verify I'm not doing anything wrong; But, a fix/solution would be preferred, thanks.<br />
<br />
Here is the code:<br />
<br />
Function VerifyAccountNoExists(oTradeDesk, iAccNum) As Boolean<br />
    'Get accounts table<br />
    Dim oAccTable<br />
    Dim boolMatch As Boolean<br />
    Dim oRow<br />
    <br />
    On Error Resume Next<br />
    <br />
    VerifyAccountNoExists = False<br />
    <br />
    If (Me.dfConnection.Value = &quot;DEMO&quot;) Then<br />
        iAccNum = Format(Me.dfAccount.Value, &quot;00000000&quot;)<br />
    End If<br />
    <br />
    Set oAccTable = oTradeDesk.TablesManager.FindTable(&quot;Accounts&quot;)<br />
    If Err.Number Then<br />
        Call fnLogErr(&quot;VerifyAccountNoExists&quot;, Err.Number &amp; &quot;: &quot; &amp; Err.Description &amp; &quot; &quot; &amp; &quot;Cannot obtain access to '&quot; + tblAccounts + &quot;' table&quot;, 10)<br />
        Exit Function<br />
    End If<br />
    <br />
    'Check column AccountName exists<br />
    If dbgCheckColumn(oAccTable, colAcctName) = False Then<br />
        Call fnLogErr(&quot;VerifyAccountNoExists&quot;, Err.Number &amp; &quot;: &quot; &amp; Err.Description &amp; &quot; &quot; &amp; &quot;Column '&quot; + colAcctName + &quot;' not found in '&quot; + tblAccounts + &quot;' table&quot;, 10)<br />
        Exit Function<br />
    End If<br />
    <br />
    'Check if the specified account number is in the accounts table<br />
    boolMatch = False<br />
    For Each oRow In oAccTable.Rows<br />
        If oRow.AccountName = iAccNum Then<br />
            gsAccountID = oRow.AccountID<br />
            gdBalance = oRow.Balance<br />
            gdEquity = oRow.Equity<br />
            boolMatch = True<br />
            Me.dfCurrentAccountBal.Value = gdBalance<br />
            Me.dfCurrentEquity.Value = gdEquity<br />
            Exit For<br />
        End If<br />
    Next<br />
    <br />
    VerifyAccountNoExists = boolMatch<br />
    <br />
End Function<br />
<br />
<br />
Private Function Login(sUserName, sPassword, sHostsPath, sTrading, ByRef oTradeDesk) As Boolean<br />
    <br />
    Login = False<br />
    <br />
    fnDisplayText (&quot;Calling login function...&quot;)<br />
    On Error Resume Next<br />
    Call oTradeDesk.Login(sUserName, sPassword, sHostsPath, sTrading)<br />
    fnDisplayText (&quot;Checking login status...&quot;)<br />
    <br />
    If Err.Number Then<br />
        If (gbAutoTimerRunning = False) Then MsgBox Err.Number &amp; &quot;: &quot; &amp; Err.Description<br />
        fnDisplayText (&quot;Login failed&quot; &amp; &quot; - &quot; &amp; Err.Number &amp; &quot;: &quot; &amp; Err.Description)<br />
        Exit Function<br />
    Else<br />
        fnDisplayText (&quot;Login succeeded&quot;)<br />
        Login = True<br />
    End If<br />
    <br />
End Function<br />
<br />
<br />
'Call to login, then verify account function...:<br />
<br />
        If Login(Me.dfUsername.Value, gsPassword, Me.dfURL.Value, Me.dfConnection.Value, oTradeDesk1) = True Then<br />
            If VerifyAccountNoExists(oTradeDesk1, Format(Me.dfUsername.Value, &quot;0000000000&quot;)) = False Then<br />
                MsgBox &quot;Account number not found under this login.&quot;<br />
                Exit Sub<br />
            End If</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>sad</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/110336-support-multiple-logins-same-account.html</guid>
		</item>
		<item>
			<title>FXCM is Looking for Systems Traders</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/82500-fxcm-looking-systems-traders.html</link>
			<pubDate>Wed, 17 Jun 2009 15:32:07 GMT</pubDate>
			<description>FXCM is looking for traders and strategies from...</description>
			<content:encoded><![CDATA[<div>FXCM is looking for traders and strategies from you, the programmer. If you are interested in being introduced to capital that is willing to trade on your strategy please contact the systems desk at fxcm, <a href="mailto:systemtrading@fxcm.com">systemtrading@fxcm.com</a>. <br />
 <br />
FXCM can provide:<br />
 <br />
* Assistance in development of your strategies<br />
* Tweaks to make your strategy work in multiple market conditions<br />
* Capital introduction to profitable strategy devlopers<br />
* Monitoring of strategies in real time<br />
* Employment opportunities available for successful developers<br />
 <br />
What we need<br />
 <br />
* contact the systemtrading desk (systemtrading@fxcm.com) with an overview of your strategy<br />
* be prepared to run your strategy on a demo account in real time<br />
* supply a copy of an MetaTrader performance report<br />
* supply a copy of your live trading returns (if available)<br />
 <br />
We are looking forward to hearing from you shortly.<br />
 <br />
No, we do not need your strategy code here, so its not required. We are just looking to assist traders with viable strategies with possible capital introduction.<br />
 <br />
Systems Desk, FXCM</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>darthfader</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/82500-fxcm-looking-systems-traders.html</guid>
		</item>
		<item>
			<title>API login not OK this morning</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/75286-api-login-not-ok-morning.html</link>
			<pubDate>Mon, 11 May 2009 10:13:48 GMT</pubDate>
			<description>Hi there 
I am receiving an error when trying to...</description>
			<content:encoded><![CDATA[<div>Hi there<br />
I am receiving an error when trying to login on API level today (05h45EST plus), though the dealing desk connects successfully. <br />
Where can we get the uptime status of the FXCM interface?<br />
It is important to understand the chances of not being able to transact. <br />
Any information welcomed!</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>erich</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/75286-api-login-not-ok-morning.html</guid>
		</item>
		<item>
			<title>FXCM message types C++ Api.</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/74383-fxcm-message-types-c-api.html</link>
			<pubDate>Sat, 02 May 2009 14:54:21 GMT</pubDate>
			<description>Along with a number of message types the...</description>
			<content:encoded><![CDATA[<div>Along with a number of message types the documentation is scant or difficult to find. <br />
E.G.<br />
IFixDefs::MSGTYPE_DASMESSAGE = &quot;U60&quot;;<br />
<br />
The best I could find in the FIX.5.0SP2 Message reference states<br />
&quot;<br />
Note: A &quot;U&quot; as the first character in the MsgType field (i.e. U, U2, etc) indicates that the message format is privately defined between the sender and receiver. &quot;</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>Quantic</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/74383-fxcm-message-types-c-api.html</guid>
		</item>
		<item>
			<title>Calculation of RSI 14</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/74104-calculation-rsi-14-a.html</link>
			<pubDate>Thu, 30 Apr 2009 11:53:23 GMT</pubDate>
			<description>Could anyone help to get the calculation of RSI...</description>
			<content:encoded><![CDATA[<div>Could anyone help to get the calculation of RSI 14 in the Markerscope?</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>Jolam0524</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/74104-calculation-rsi-14-a.html</guid>
		</item>
		<item>
			<title>Visual C++ 2008 Express Edition</title>
			<link>http://forexforums.dailyfx.com/fxprogrammers/70684-visual-c-2008-express-edition.html</link>
			<pubDate>Mon, 06 Apr 2009 10:39:29 GMT</pubDate>
			<description>Dear Forum Members, 
 
Is it possible to create...</description>
			<content:encoded><![CDATA[<div>Dear Forum Members,<br />
<br />
Is it possible to create DLLs with Visual C++ 2008 Express Edition?<br />
Does somebody have experiences in that matters?<br />
<br />
Regards<br />
<br />
Werner PAPST</div>

]]></content:encoded>
			<category domain="http://forexforums.dailyfx.com/fxprogrammers/">FXProgrammers</category>
			<dc:creator>roswitha10_0</dc:creator>
			<guid isPermaLink="true">http://forexforums.dailyfx.com/fxprogrammers/70684-visual-c-2008-express-edition.html</guid>
		</item>
	</channel>
</rss>
