├── README.md └── WAPIWrapper ├── WAPIWrapperCPP ├── API │ └── WAPIWrapperCpp.h ├── Samples │ ├── WindQuantCppSample │ │ ├── Release │ │ │ ├── WAPIWrapperCpp.dll │ │ │ └── WindQuantCppSample.exe │ │ ├── WindQuantCppSample.sln │ │ └── WindQuantCppSample │ │ │ ├── ReadMe.txt │ │ │ ├── WindQuantCppSample.aps │ │ │ ├── WindQuantCppSample.cpp │ │ │ ├── WindQuantCppSample.h │ │ │ ├── WindQuantCppSample.rc │ │ │ ├── WindQuantCppSample.vcxproj │ │ │ ├── WindQuantCppSample.vcxproj.filters │ │ │ ├── WindQuantCppSample.vcxproj.user │ │ │ ├── WindQuantCppSampleDlg.cpp │ │ │ ├── WindQuantCppSampleDlg.h │ │ │ ├── res │ │ │ ├── WindQuantCppSample.ico │ │ │ └── WindQuantCppSample.rc2 │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ └── WindTradeCppSample │ │ ├── Release │ │ ├── WAPIWrapperCpp.dll │ │ └── WindTradeCppSample.exe │ │ ├── WindTradeCppSample.sln │ │ ├── WindTradeCppSample.suo │ │ └── WindTradeCppSample │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── WindTradeCppSample.Build.CppClean.log │ │ ├── WindTradeCppSample.exe.embed.manifest │ │ ├── WindTradeCppSample.exe.embed.manifest.res │ │ ├── WindTradeCppSample.exe.intermediate.manifest │ │ ├── WindTradeCppSample.lastbuildstate │ │ ├── WindTradeCppSample.log │ │ ├── WindTradeCppSample.obj │ │ ├── WindTradeCppSample.pch │ │ ├── WindTradeCppSample_manifest.rc │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.3916-cvtres.read.1.tlog │ │ ├── link.3916-cvtres.write.1.tlog │ │ ├── link.3916.read.1.tlog │ │ ├── link.3916.write.1.tlog │ │ ├── link.728-cvtres.read.1.tlog │ │ ├── link.728-cvtres.write.1.tlog │ │ ├── link.728.read.1.tlog │ │ ├── link.728.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ ├── stdafx.obj │ │ ├── vc100.idb │ │ └── vc100.pdb │ │ ├── ReadMe.txt │ │ ├── WindTradeCppSample.cpp │ │ ├── WindTradeCppSample.cpp.bak │ │ ├── WindTradeCppSample.vcxproj │ │ ├── WindTradeCppSample.vcxproj.filters │ │ ├── WindTradeCppSample.vcxproj.user │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── lib │ ├── Win32 │ │ ├── WAPIWrapperCpp.dll │ │ └── WAPIWrapperCpp.lib │ └── x64 │ │ ├── WAPIWrapperCpp.dll │ │ └── WAPIWrapperCpp.lib ├── readme.txt └── src │ ├── WAPIWrapperCpp.sln │ ├── WAPIWrapperCpp.suo │ ├── WAPIWrapperCpp.vcxproj │ ├── WAPIWrapperCpp.vcxproj.filters │ ├── cpp │ ├── ReadMe.txt │ ├── WAPIWrapperCpp.cpp │ ├── WindCppAPIImp.cpp │ ├── WindCppAPIImp.h │ ├── WindDataParser.cpp │ ├── WindDataParser.h │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── windDataComSink.cpp │ └── windDataComSink.h │ ├── header │ └── WAPIWrapperCpp.h │ └── lib │ └── WindDataCOM.tlb ├── WAPIWrapperCSharp ├── Samples │ ├── BreakThroughStrategy │ │ ├── BreakThroughStrategy.sln │ │ ├── BreakThroughStrategy.suo │ │ └── BreakThroughStrategy │ │ │ ├── BreakThroughStrategy.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Form3.Designer.cs │ │ │ ├── Form3.cs │ │ │ ├── Form3.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── bin │ │ │ ├── Debug │ │ │ ├── BreakThroughStrategy.exe │ │ │ ├── BreakThroughStrategy.vshost.exe │ │ │ ├── BreakThroughStrategy.vshost.exe.manifest │ │ │ └── WAPIWrapperCSharp.dll │ │ │ └── Release │ │ │ ├── BreakThroughStrategy.exe │ │ │ ├── BreakThroughStrategy.vshost.exe │ │ │ ├── BreakThroughStrategy.vshost.exe.manifest │ │ │ └── WAPIWrapperCSharp.dll │ ├── WindConsoleAppSample │ │ ├── WindConsoleAppSample.sln │ │ ├── WindConsoleAppSample.suo │ │ └── WindConsoleAppSample │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── RBreakSample.cs │ │ │ ├── TradeSample.cs │ │ │ ├── WindConsoleAppSample.csproj │ │ │ ├── WindConsoleAppSample.csproj.user │ │ │ ├── WindDataMethod.cs │ │ │ └── bin │ │ │ └── Debug │ │ │ ├── WAPIWrapperCSharp.dll │ │ │ ├── WindConsoleAppSample.exe │ │ │ ├── WindConsoleAppSample.pdb │ │ │ └── WindConsoleAppSample.vshost.exe │ ├── WindDataMethod.cs │ ├── WindEDBFormSample │ │ ├── WindEDBFormSample.sln │ │ ├── WindEDBFormSample.suo │ │ └── WindEDBFormSample │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── WindEDBFormSample.csproj │ │ │ └── bin │ │ │ └── Debug │ │ │ ├── WAPIWrapperCSharp.dll │ │ │ ├── WindEDBFormSample.exe │ │ │ └── WindEDBFormSample.vshost.exe │ └── WindFormsAppSample1 │ │ ├── WindFormsAppSample1.sln │ │ ├── WindFormsAppSample1.suo │ │ ├── WindFormsAppSample1 │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WindDataMethod.cs │ │ ├── WindFormsAppSample1.csproj │ │ └── bin │ │ │ └── Debug │ │ │ ├── WAPIWrapperCSharp.dll │ │ │ ├── WindowsFormsApplication1.exe │ │ │ ├── WindowsFormsApplication1.pdb │ │ │ ├── WindowsFormsApplication1.vshost.exe │ │ │ └── WindowsFormsApplication1.vshost.exe.manifest │ │ └── WindowsFormsApplication1.suo ├── WAPIWrapperCSharp.dll ├── doc │ └── Wind量化接口培训C#20141216.pptx ├── readme.txt └── src │ └── WAPIWrapperCSharp │ ├── Properties │ └── AssemblyInfo.cs │ ├── WAPIWrapperCSharp.csproj │ ├── WAPIWrapperCSharp.sln │ ├── WindAPI.cs │ └── bin │ └── Release │ └── WAPIWrapperCSharp.dll ├── WAPIWrapperMatlab ├── readme.txt └── windmatlab.m ├── WAPIWrapperPython ├── WindPy.py └── readme.txt ├── WAPIWrapperR ├── WindR │ ├── DESCRIPTION │ ├── NAMESPACE │ ├── R │ │ └── WindR.R │ ├── demo │ │ ├── 00Index │ │ ├── wsd_quant_demo.R │ │ ├── wsi_demo.R │ │ ├── wsq_demo.R │ │ └── wst_demo.R │ ├── inst │ │ └── libs │ │ │ ├── i386 │ │ │ └── WindR.dll │ │ │ └── x64 │ │ │ └── WindR.dll │ └── man │ │ ├── WindR-package.Rd │ │ ├── w.asDateTime.Rd │ │ ├── w.callback.Rd │ │ ├── w.cancelRequest.Rd │ │ ├── w.clearAllRequest.Rd │ │ ├── w.close.Rd │ │ ├── w.demoCallback.Rd │ │ ├── w.getversion.Rd │ │ ├── w.isConnectionOK.Rd │ │ ├── w.menu.Rd │ │ ├── w.start.Rd │ │ ├── w.stop.Rd │ │ ├── w.tcancel.Rd │ │ ├── w.tcovered.Rd │ │ ├── w.tdays.Rd │ │ ├── w.tdayscount.Rd │ │ ├── w.tdaysoffset.Rd │ │ ├── w.tlogon.Rd │ │ ├── w.tlogout.Rd │ │ ├── w.torder.Rd │ │ ├── w.tquery.Rd │ │ ├── w.tspecial.Rd │ │ ├── w.weqs.Rd │ │ ├── w.wpf.Rd │ │ ├── w.wsd.Rd │ │ ├── w.wset.Rd │ │ ├── w.wsi.Rd │ │ ├── w.wsq.Rd │ │ ├── w.wsqtd.Rd │ │ ├── w.wss.Rd │ │ ├── w.wst.Rd │ │ └── w.wupf.Rd └── readme.txt ├── WAPIWrapperVBA ├── WindVBA.xla └── readme.txt ├── WindNavigator.exe └── readme.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/README.md -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/API/WAPIWrapperCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/API/WAPIWrapperCpp.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/Release/WAPIWrapperCpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/Release/WAPIWrapperCpp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/Release/WindQuantCppSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/Release/WindQuantCppSample.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/ReadMe.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.aps -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.rc -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj.filters -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSample.vcxproj.user -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSampleDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSampleDlg.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSampleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/WindQuantCppSampleDlg.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/res/WindQuantCppSample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/res/WindQuantCppSample.ico -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/res/WindQuantCppSample.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/res/WindQuantCppSample.rc2 -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/resource.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/stdafx.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/stdafx.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindQuantCppSample/WindQuantCppSample/targetver.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/Release/WAPIWrapperCpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/Release/WAPIWrapperCpp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/Release/WindTradeCppSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/Release/WindTradeCppSample.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.Build.CppClean.log -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.embed.manifest -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.embed.manifest.res -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.exe.intermediate.manifest -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.lastbuildstate -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.log -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.obj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample.pch -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/WindTradeCppSample_manifest.rc -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916-cvtres.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916-cvtres.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.3916.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728-cvtres.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728-cvtres.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.728.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/stdafx.obj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/vc100.idb -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/Debug/vc100.pdb -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/ReadMe.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.cpp.bak -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj.filters -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/WindTradeCppSample.vcxproj.user -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/stdafx.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/stdafx.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/Samples/WindTradeCppSample/WindTradeCppSample/targetver.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/lib/Win32/WAPIWrapperCpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/lib/Win32/WAPIWrapperCpp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/lib/Win32/WAPIWrapperCpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/lib/Win32/WAPIWrapperCpp.lib -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/lib/x64/WAPIWrapperCpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/lib/x64/WAPIWrapperCpp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/lib/x64/WAPIWrapperCpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/lib/x64/WAPIWrapperCpp.lib -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.vcxproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/WAPIWrapperCpp.vcxproj.filters -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/ReadMe.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/WAPIWrapperCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/WAPIWrapperCpp.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/WindCppAPIImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/WindCppAPIImp.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/WindCppAPIImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/WindCppAPIImp.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/WindDataParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/WindDataParser.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/WindDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/WindDataParser.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/dllmain.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/stdafx.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/stdafx.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/targetver.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/windDataComSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/windDataComSink.cpp -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/cpp/windDataComSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/cpp/windDataComSink.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/header/WAPIWrapperCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/header/WAPIWrapperCpp.h -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCPP/src/lib/WindDataCOM.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCPP/src/lib/WindDataCOM.tlb -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/BreakThroughStrategy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/BreakThroughStrategy.csproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form1.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Form3.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Program.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Resources.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/Properties/Settings.settings -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.vshost.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/BreakThroughStrategy.vshost.exe.manifest -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Debug/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.vshost.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/BreakThroughStrategy.vshost.exe.manifest -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/BreakThroughStrategy/BreakThroughStrategy/bin/Release/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/Program.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/RBreakSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/RBreakSample.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/TradeSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/TradeSample.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindConsoleAppSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindConsoleAppSample.csproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindConsoleAppSample.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindConsoleAppSample.csproj.user -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindDataMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/WindDataMethod.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.pdb -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindConsoleAppSample/WindConsoleAppSample/bin/Debug/WindConsoleAppSample.vshost.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindDataMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindDataMethod.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Form1.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Program.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Resources.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/Properties/Settings.settings -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/WindEDBFormSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/WindEDBFormSample.csproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WindEDBFormSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WindEDBFormSample.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WindEDBFormSample.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindEDBFormSample/WindEDBFormSample/bin/Debug/WindEDBFormSample.vshost.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Form1.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Program.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Resources.resx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/Properties/Settings.settings -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/WindDataMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/WindDataMethod.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/WindFormsAppSample1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/WindFormsAppSample1.csproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.pdb -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.vshost.exe -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindFormsAppSample1/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindowsFormsApplication1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/Samples/WindFormsAppSample1/WindowsFormsApplication1.suo -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/doc/Wind量化接口培训C#20141216.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/doc/Wind量化接口培训C#20141216.pptx -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WAPIWrapperCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WAPIWrapperCSharp.csproj -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WAPIWrapperCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WAPIWrapperCSharp.sln -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WindAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/WindAPI.cs -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/bin/Release/WAPIWrapperCSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperCSharp/src/WAPIWrapperCSharp/bin/Release/WAPIWrapperCSharp.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperMatlab/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperMatlab/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperMatlab/windmatlab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperMatlab/windmatlab.m -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperPython/WindPy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperPython/WindPy.py -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperPython/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperPython/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/DESCRIPTION -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/NAMESPACE -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/R/WindR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/R/WindR.R -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/demo/00Index -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/demo/wsd_quant_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/demo/wsd_quant_demo.R -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/demo/wsi_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/demo/wsi_demo.R -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/demo/wsq_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/demo/wsq_demo.R -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/demo/wst_demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/demo/wst_demo.R -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/inst/libs/i386/WindR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/inst/libs/i386/WindR.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/inst/libs/x64/WindR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/inst/libs/x64/WindR.dll -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/WindR-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/WindR-package.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.asDateTime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.asDateTime.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.callback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.callback.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.cancelRequest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.cancelRequest.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.clearAllRequest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.clearAllRequest.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.close.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.close.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.demoCallback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.demoCallback.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.getversion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.getversion.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.isConnectionOK.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.isConnectionOK.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.menu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.menu.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.start.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.stop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.stop.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tcancel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tcancel.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tcovered.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tcovered.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tdays.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tdays.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tdayscount.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tdayscount.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tdaysoffset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tdaysoffset.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tlogon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tlogon.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tlogout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tlogout.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.torder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.torder.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tquery.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tquery.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.tspecial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.tspecial.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.weqs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.weqs.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wpf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wpf.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wsd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wsd.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wset.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wsi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wsi.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wsq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wsq.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wsqtd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wsqtd.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wss.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wst.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/WindR/man/w.wupf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/WindR/man/w.wupf.Rd -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperR/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperR/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperVBA/WindVBA.xla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperVBA/WindVBA.xla -------------------------------------------------------------------------------- /WAPIWrapper/WAPIWrapperVBA/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WAPIWrapperVBA/readme.txt -------------------------------------------------------------------------------- /WAPIWrapper/WindNavigator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/WindNavigator.exe -------------------------------------------------------------------------------- /WAPIWrapper/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindQuant/Official/HEAD/WAPIWrapper/readme.txt --------------------------------------------------------------------------------