|
QuantShare
2017-06-26 09:36:02
1
|
|
Please take a look at this:
https://www.quantshare.com/title-831-email-setup-gmail-settings&kbaseid=forum-831-9449-304
Regarding the script, this needs to be implemented in the script editor (Tools -> Script Editor). Here is a script example, you need to change the screener name:
ScreenTask task = Screener.Run("screen name");
while(!task.IsCompleted)
{
App.Main.Sleep(1000);
}
string result = "";
for(int i=0;i<task.ScreenResults.Length;i++)
{
result = result + task.ScreenResults[0].Symbol + ";";
}
App.Net.SendEmail("Result Screener", result);
You can use "Tools -> Task Manager" to run this script once a day.
|
|