Go Back   DailyFX Forum > FXCM Products and Services > FXProgrammers > Developed Applications > Free Applications

Reply
 
Thread Tools Rate Thread
  #1 (permalink)  
Old 05-19-2006, 12:03 PM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
[Order2Go] JuniorTS

JuniorTS

Language
Visual Basic 6

API Version
Order2Go v01.02.051006

Description
This application uses the Order2Go to allow users to trade from an order bar. All the trading types are supported, but it reduces the amount of displayed information allowing the user to monitor other applications while still having easy access to trade via their FXCM account. It can be used with a Demo or Real account. Please note that for a real account, you should have your account enabled for "Multiple Session Access".

Usage
Step 1) Please make sure you have a valid FXCM account. If you do not, please click here to register for a demo.
Step 2) Please install the Order2Go runtime on your computer. You can install it here.
Step 3) Download and unzip the application JuniorTS_Application.zip below.
Step 4) In the unzipped folder, double-click on the application JuniorTS.exe

(Please note that you can also use a real account login, though we recommend that you contact FXCM to request multiple session access before doing so, otherwise, the JuniorTS may log you out of your Trading Station.)

Notes
Once logged in. You can right-click over the "Account" label to enable the application to be "Always on top", or generate a Combined Account Statement on account displayed.


Attached Files
File Type: zip JuniorTS_Source.zip (28.7 KB, 196 views)
File Type: zip JuniorTS_Application.zip (19.8 KB, 183 views)

Last edited by FXCM Help; 03-06-2009 at 02:32 PM..
Reply With Quote
  #2 (permalink)  
Old 05-28-2007, 11:29 AM
Junior Member
 
Join Date: Mar 2007
Posts: 3
rpchost is on a distinguished road
I wish to ask about closing a trade

I downloaded this application i understand all its functions but closing an opening trade there is no function for it. how can i close a specific order ??

Thx
Reply With Quote
  #3 (permalink)  
Old 05-30-2007, 01:13 PM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
This application was created before hedging was possible so it can't be used on hedging accounts since it is not possible to close positions.

If your account is not on hedging, you would be able to close positions by entering trades in the opposite direction since they will net out.
Reply With Quote
  #4 (permalink)  
Old 09-10-2007, 11:37 AM
Junior Member
 
Join Date: Jul 2006
Posts: 2
antantant is on a distinguished road
I got this error when i start the program, "activex component can't create object"
please help me
Reply With Quote
  #5 (permalink)  
Old 09-10-2007, 11:42 AM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
Did you install the Order2Go runtime? It is the second step under usage.
Reply With Quote
  #6 (permalink)  
Old 09-10-2007, 12:36 PM
Junior Member
 
Join Date: Jul 2006
Posts: 2
antantant is on a distinguished road
thanks for the quick reply,
yes, i have install it using this link http://www.fxcorporate.com/Order2Go/FXOrder2GoRE.EXE
and i got FXorder2go inside the start menu and program files
also, i got order2godde working for me without problem
Reply With Quote
  #7 (permalink)  
Old 09-11-2007, 06:05 PM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
We have attempted this on several computers and are not able to replicate the problem. Is there any other information you can provide.
You could also attempt to uninstall and reinstall Order2Go and see if that helps.
Reply With Quote
  #8 (permalink)  
Old 10-14-2007, 02:35 PM
Member
 
Join Date: Oct 2007
Posts: 5
adunafel is on a distinguished road
FXCM Help,

sorry, i need help.

Is posible to change stops and limits in the open orders? I need, if exists, the functions to change parameters of open orders.

Thank you
Reply With Quote
  #9 (permalink)  
Old 10-15-2007, 02:16 AM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
You could use ChangeOrderLimit() and ChangeOrderStop().
Reply With Quote
  #10 (permalink)  
Old 10-15-2007, 03:56 PM
Member
 
Join Date: Oct 2007
Posts: 5
adunafel is on a distinguished road
Sorry to bother you again but I didn't find all the parameters to use with
these functions. Could you please tell me if there is some document where I
can find this information?.

The information I'd like to have is:
- to remove the limit
- to modify the stop

Thank you
Reply With Quote
  #11 (permalink)  
Old 10-16-2007, 12:14 AM
Moderator
 
Join Date: Jan 2006
Posts: 1,990
FXCM Help is on a distinguished road
You can find the VB examples from downloading the latest version of the Order2Go COM API:

http://www.fxprogrammers.com/forum/showthread.php?t=366

However, you might need an access for downloading that, you could fill in the request form as needed:

http://www.fxprogrammers.com/forum/showthread.php?t=21
Reply With Quote
  #12 (permalink)  
Old 10-16-2007, 03:51 AM
Member
 
Join Date: Oct 2007
Posts: 5
adunafel is on a distinguished road
Form send!!!

Thank you
Reply With Quote
  #13 (permalink)  
Old 01-26-2008, 01:55 AM
Junior Member
 
Join Date: May 2007
Posts: 1
endlos is on a distinguished road
"The ActiveX Component cant create the object" problem- SOLVED

I couldnt log in, got the error: The ActiveX Component cant create the object

and I solved the problem like this:

You have to edit one thing in the source code (OrderEntry.frm).

Replace this:
Code:
Private Function InitCore() As Boolean

    On Error Resume Next

    InitCore = False

    ' Create main object
    Me.lblStatus.Caption = "Initiating CORE..."
    Set oCor = CreateObject("FXCM.CORE")
    If Err.Number Then
        MsgBox Err.Description
        Me.lblStatus.Caption = "CORE not initiated"
        Exit Function
    End If
    Me.lblStatus.Caption = "CORE Initiated"
     Me.cmbConnection.Text = "Demo"
   ' Rates = False
To this:
Code:
Private Function InitCore() As Boolean

    On Error Resume Next

    InitCore = False

    ' Create main object
    Me.lblStatus.Caption = "Initiating CORE..."
    Set oCor = CreateObject("Order2Go.CORE")
    If Err.Number Then
        MsgBox Err.Description
        Me.lblStatus.Caption = "CORE not initiated"
        Exit Function
    End If
    Me.lblStatus.Caption = "CORE Initiated"
     Me.cmbConnection.Text = "Demo"
   ' Rates = False
Save and Run It will run with the latest Order2Go update as January/26/2008

Regards.
Reply With Quote
  #14 (permalink)  
Old 08-06-2008, 04:39 PM
Member
 
Join Date: Jun 2008
Posts: 6
bernesbyj is on a distinguished road
I would like to start a new thread but I seem not to have the access!

When I download junior-ts source there is calendar form any info about this?
Reply With Quote
  #15 (permalink)  
Old 08-07-2008, 09:41 AM
Member
 
Join Date: Jun 2008
Posts: 6
bernesbyj is on a distinguished road
My error

Ok, I did not read the posting carefully enough.

Is there a way to get the report into excel?

is there a way to include open positions?

Sorry!
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




Disclaimer: Trading foreign exchange on margin carries a high level of risk, and may not be suitable for all investors. The high degree of leverage can work against you as well as for you. Before deciding to trade foreign exchange you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment and therefore you should not invest money that you cannot afford to lose. You should be aware of all the risks associated with foreign exchange trading, and seek advice from an independent financial advisor if you have any doubts. Any opinions, news, research, analyses, prices, or other information contained on this website is provided as general market commentary and does not constitute investment advice. Forex Capital Markets LLC. will not accept liability for any loss or damage, including without limitation to, any loss of profit, which may arise directly or indirectly from use of or reliance on such information.

All times are GMT -5. The time now is 09:02 PM.
Copyright ©2009 Daily FX. All Rights Reserved.