자동 매도 추가

This commit is contained in:
2017-01-26 15:43:12 +09:00
parent 47c8a9532c
commit da9a59622b
13 changed files with 1127 additions and 207 deletions

15
Util.cs
View File

@@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AutoSeller
namespace AutoSellerNS
{
static class Util
{
@@ -17,13 +17,8 @@ namespace AutoSeller
DEBUG,
ERROR,
VERVOSE,
NEGATIVE,
POSITIVE,
MANUAL_KEYWORD,
MANUAL_CODE,
DUPLICATED,
DENIAL,
BUY,
SELL,
}
static string m_strLogFile = null;
static RichTextBox m_LogBox = null;
@@ -61,13 +56,9 @@ namespace AutoSeller
case LOG_TYPE.VERVOSE:
LogColor = Color.Black;
break;
case LOG_TYPE.NEGATIVE:
case LOG_TYPE.DENIAL:
case LOG_TYPE.DUPLICATED:
case LOG_TYPE.SELL:
LogColor = Color.Blue;
break;
case LOG_TYPE.POSITIVE:
case LOG_TYPE.MANUAL_KEYWORD:
case LOG_TYPE.BUY:
LogColor = Color.Red;
break;