-->
Contact Us
FAQ
Home
ATAP Simulator
Economic Analysis
Nightly Newsletter
Day Trading Alerts
Swing Trading Alerts
Chat Room
Help
  Enter a Stock Symbol
  Newsletter

The Nightly Newsletter

 

 Tutorials
-->    

If you dont hear microsoft agent properly then download the required components from here

Read It!  

The tutorial options below are designed to fit the needs of specific types of traders.  Some traders want the complete breakdown of concepts and strategies before they begin to use the system.  Others just want to be told how to use the system.  While other, less active traders, are interested in finding ways of using our system which don't take up much time.  The options below are meant to offer you what you need to satisfy your goals.  Choose one.  If you have questions, e-mail support@stocktradersdaily.com, we will help you understand our system personally.

 

 

     1.  Quick Tutorial  (For the active trader who just wants to know how to use the system

 

     2.  Complete tutorial (For the Active Traders who wants all the details)

 

     3.  Less Active Tutorial (Designed for the trader who can't watch the Market during the day)

 

Copyright 2000-2005, Stock Traders Daily - All Rights Reserved
> End Sub Sub Agent_RequestComplete(ByVal Request) ' The Request to load the ACF character fails If Request = LoadRequestURL Then ' If it failed If Request.Status = 1 Then Msgbox "Merlin could not be loaded. The server may be busy. Try refreshing this page." Exit Sub ' If it succeeded ElseIf Request.Status = 0 Then ' Assign Merlin to the loaded character Set Merlin = Agent.Characters("Merlin") ' Get the preliminary animations necessary to show Merlin Set GetShowAnimation = Merlin.Get ("state", "showing, speaking") Merlin.Get "animation", "Blink, Greet, Pleased, Explain, Think, GestureDown,Idle1_1,Idle2_2, Announce, Uncertain", False End If ' The request to get the animation ElseIf Request = GetShowAnimation Then ' If it failed If Request.Status = 1 Then Msgbox "Request to load the Show animation failed. The server may be busy." Exit Sub ' If it succeeded ElseIf Request.Status = 0 Then DoIntro End If End If End Sub Sub LoadCharacter On Error Resume Next ' Attempt to load the character from the Microsoft Agent Chars directory Set LoadRequestUNC = Agent.Characters.Load ("Merlin", "Merlin.acs") ' If it fails... If LoadRequestUNC.Status <> 0 Then ' Attempt to load the character from the Microsoft Agent site Set LoadRequestURL = Agent.Characters.Load ("Merlin", "http://www.microsoft.com/msagent/chars/Merlin/Merlin.acf") ' It didn't fail so assign Merlin to loaded character file Else ' Assign Merlin to the loaded character Set Merlin = Agent.Characters("Merlin") DoIntro End If End Sub Sub Agent_Click (ByVal CharacterID, ByVal Button, ByVal Shift, ByVal X, ByVal Y) Merlin.Stop Merlin.Play "Alert" Merlin.Speak "Hey, watch it with that pointer!|Oh that tickles!|\pit=170\Hee hee hee!" Merlin.Play "Blink" End Sub Sub Agent_DragComplete (ByVal CharacterID, ByVal Button, ByVal Shift, ByVal X, ByVal Y) Merlin.Stop Merlin.Play "Blink" Merlin.Speak "Well, \emp\this gives me a new perspective!|I like it much better over here.|Now why did you move me?|Hey, be careful!" Merlin.Play "Blink" End Sub Sub SpeakButton() Merlin.Stop If document.MyForm.text1.value <> "" Then Merlin.Speak document.MyForm.text1.value End If End Sub Sub Speak(ByVal text) Merlin.Stop Merlin.Play "Explain" If text <> "" Then Merlin.Speak text End If End Sub Sub Agent_Command (ByVal UserInput) If UserInput.Name = "ACO" Then Agent.PropertySheet.Visible = True End If End Sub -->