alexan 41 posts msg #124782 - Ignore alexan |
8/28/2015 11:40:45 AM
Is there a way to get that email immediately instead of waiting until the end of the day
|
Kevin_in_GA 4,599 posts msg #124784 - Ignore Kevin_in_GA |
8/28/2015 12:50:13 PM
I do not think that is possible. All emails are sent out in the evening after trading has closed.
|
indexa 32 posts msg #124817 - Ignore indexa |
8/31/2015 2:53:44 PM
Hi,
I suggest you to use a macro script. It is small program that "reads" your screen and detects a change. It is very easy to configurate
Obviously, you need to have all the time a laptop powered up, viewing the stockfetcher site.
Download it from here:
http://www.autohotkey.com/
If you are interested, I can send you my own script. Only modify the values as your screen size varies.
Carlos
|
cheiss 1 posts msg #125067 - Ignore cheiss |
9/17/2015 5:54:53 PM
Hi Carlos
I would try it that way.
Could you post your skript?
Christian
|
indexa 32 posts msg #125091 - Ignore indexa |
9/19/2015 7:56:33 PM
Hi,
this is the script (copy and paste in a notepad file. Then save as alert.ahk):
1::
label1:
Soundbeep,5000
Sleep,6000
Click,46,16
Winwait,StockFetcher.com - Stock Screening
Sleep,2000
Click,574,454
Sleep,5000
PixelGetColor, OutputVar, 34,556
Sleep,2000
IfEqual, OutputVar,0xFFFFFF
{
Soundbeep,3000
Sleep,6000
gosub label1
}
else {
Click,271,19
Winwait,Outlook.com -
Sleep,3000
Click,270,92
Sleep,6000
Click,60,238
Sleep,3000
;write your mail:
Send X@X.com
Sleep,500
Sleep,300
Click,571,163
Sleep,500
Send results
Sleep,500
Click,271,84
}
Exit
|
indexa 32 posts msg #125092 - Ignore indexa |
9/19/2015 8:01:34 PM
Filter Alert
Macro script
Abstract: This script simulates to review and detect stockfetcher filter results and then send a mail.
Requirements: AutoHotKey (http://ahkscript.org/download/)
The script does some of this actions:
-mouse click in some coordinates
-write in the screen, in some coordinates
-see or detect pixel color in the screen
Web navigator: Chrome or Mozilla
Tabs: 2, in this order. stockfetcher.com (with your filter ready to execute) and hotmail.com (in your account)
Adjust screen coordinates to match mouse click with target. Use AutoIT3 Window Spy program, from AutoHotKey (use the value from "Mouse Position in Active Window")
Script Resume (mouse clicks and actions):
Part I Stock Fetcher monitoring
1 Click in stockfetcher tab
2 Click in "Fetch Stocks" button
3 Click in results area.
4 No results: color white, code: FFFFFF, back to step 1
5 1 or more results go to part II.
Part II Hotmail
1 Click New mail
2 Click "To" area, write mail
3 Click Send
To execute this script:
double click in this file: alert.ahk
open stockfetcher, with your filter ready to run
press letter "1"
to exit the script
look at the task bar, there is "H" icon. Left click mouse and select exit
|