The compiler is right - your code is full of basic errors.
In init(), you declare queryBuildDataSource variable, but you don't use it for anything. Than you're calling this.queryBuildDataSource() method, but forms don't have such a method, as the compiler is telling you. You surely mean a data source, e.g. StockPredictions_CAP_ds.queryBuildDataSource().
Then you try to assign a value of DateFilter1 variable, but you've never declared it.
In selectionChange(), you're trying to use value() method, but no such a method exists. You can use selection() method, but it's not clear why you're using a combobox if your logic checks just whether the value is zero.